Switch machine-type lexemes to use suffixes. Remove support for foo(bar) as a cast notation. Closes #129.
This commit is contained in:
parent
6662aeb779
commit
8030757624
24 changed files with 156 additions and 207 deletions
|
|
@ -3,7 +3,7 @@ import std._io.buf_reader;
|
|||
iter buffers(buf_reader rdr) -> vec[u8] {
|
||||
while (true) {
|
||||
let vec[u8] v = rdr.read();
|
||||
if (std._vec.len[u8](v) == uint(0)) {
|
||||
if (std._vec.len[u8](v) == 0u) {
|
||||
ret;
|
||||
}
|
||||
put v;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue