Switch machine-type lexemes to use suffixes. Remove support for foo(bar) as a cast notation. Closes #129.

This commit is contained in:
Graydon Hoare 2010-07-27 19:21:51 -07:00
parent 6662aeb779
commit 8030757624
24 changed files with 156 additions and 207 deletions

View file

@ -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;