diff options
| author | Rafael Avila de Espindola <espindola@dream.(none)> | 2011-02-07 12:46:28 -0500 |
|---|---|---|
| committer | Rafael Avila de Espindola <espindola@dream.(none)> | 2011-02-07 12:50:04 -0500 |
| commit | 8122e0c54280545c28e8067c0e3a19253fe3aa9b (patch) | |
| tree | e6560391519e60a8c750890af13ea186b91fa91c /src | |
| parent | Parse function declarations. (diff) | |
| download | rust-8122e0c54280545c28e8067c0e3a19253fe3aa9b.tar.xz rust-8122e0c54280545c28e8067c0e3a19253fe3aa9b.zip | |
Add support for
native mod foo = "bar" ...
Diffstat (limited to 'src')
| -rw-r--r-- | src/comp/front/parser.rs | 13 | ||||
| -rw-r--r-- | src/test/run-pass/native2.rs | 4 |
2 files changed, 16 insertions, 1 deletions
diff --git a/src/comp/front/parser.rs b/src/comp/front/parser.rs index e04b8221..8d130935 100644 --- a/src/comp/front/parser.rs +++ b/src/comp/front/parser.rs @@ -1630,9 +1630,20 @@ impure fn parse_native_mod_items(parser p, impure fn parse_item_native_mod(parser p) -> @ast.item { auto lo = p.get_span(); expect(p, token.NATIVE); - auto native_name = parse_str_lit(p); + auto has_eq; + auto native_name = ""; + if (p.peek() == token.MOD) { + has_eq = true; + } else { + native_name = parse_str_lit(p); + has_eq = false; + } expect(p, token.MOD); auto id = parse_ident(p); + if (has_eq) { + expect(p, token.EQ); + native_name = parse_str_lit(p); + } expect(p, token.LBRACE); auto m = parse_native_mod_items(p, native_name); auto hi = p.get_span(); diff --git a/src/test/run-pass/native2.rs b/src/test/run-pass/native2.rs index a6df93f5..4d2f0ad9 100644 --- a/src/test/run-pass/native2.rs +++ b/src/test/run-pass/native2.rs @@ -3,5 +3,9 @@ native "rust" mod rustrt { fn vec_buf[T](vec[T] v, uint offset) -> vbuf; } +native mod libc = "libc.dylib" { + fn write(int fd, rustrt.vbuf buf, uint count) -> int; +} + fn main(vec[str] args) { } |