diff options
| author | Graydon Hoare <[email protected]> | 2011-03-20 20:18:19 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2011-03-20 20:18:19 -0700 |
| commit | 4b946cea35888bc82c624e9d79fade3077b40c3c (patch) | |
| tree | f4a618c82541396930cd876ad938f81781f6422f /src/comp/front/parser.rs | |
| parent | Switch win32 path_sep to '/', add comment explaining a bit. (diff) | |
| download | rust-4b946cea35888bc82c624e9d79fade3077b40c3c.tar.xz rust-4b946cea35888bc82c624e9d79fade3077b40c3c.zip | |
Modify native_item_fn to handle trailing linkage names that differ from the item name (used in win32 build of std.dll)
Diffstat (limited to 'src/comp/front/parser.rs')
| -rw-r--r-- | src/comp/front/parser.rs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/comp/front/parser.rs b/src/comp/front/parser.rs index b00a2deb..9d3724f9 100644 --- a/src/comp/front/parser.rs +++ b/src/comp/front/parser.rs @@ -1859,9 +1859,15 @@ impure fn parse_item_native_fn(parser p, ast.effect eff) -> @ast.native_item { expect(p, token.FN); auto t = parse_fn_header(p); auto decl = parse_fn_decl(p, eff); + auto link_name = none[str]; + if (p.peek() == token.EQ) { + p.bump(); + link_name = some[str](parse_str_lit_or_env_ident(p)); + } auto hi = p.get_span(); expect(p, token.SEMI); - auto item = ast.native_item_fn(t._0, decl, t._1, p.next_def_id(), + auto item = ast.native_item_fn(t._0, link_name, decl, + t._1, p.next_def_id(), ast.ann_none); ret @spanned(lo, hi, item); } |