diff options
| author | Graydon Hoare <[email protected]> | 2010-06-29 12:00:15 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2010-06-29 12:00:15 -0700 |
| commit | 1f9fd2710ec9122ddddcedaab51650a92ad7c8cf (patch) | |
| tree | 5e8505579d43bb5ad4c95187f6207820a950b37c /src/boot/fe/parser.ml | |
| parent | Fix underlying failure to signal errors when dep'ing. (diff) | |
| download | rust-1f9fd2710ec9122ddddcedaab51650a92ad7c8cf.tar.xz rust-1f9fd2710ec9122ddddcedaab51650a92ad7c8cf.zip | |
Initial stab at lowering mutable and exterior into the type system.
Diffstat (limited to 'src/boot/fe/parser.ml')
| -rw-r--r-- | src/boot/fe/parser.ml | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/boot/fe/parser.ml b/src/boot/fe/parser.ml index 5df44303..97cf8985 100644 --- a/src/boot/fe/parser.ml +++ b/src/boot/fe/parser.ml @@ -181,13 +181,11 @@ let err (str:string) (ps:pstate) = let (slot_nil:Ast.slot) = { Ast.slot_mode = Ast.MODE_interior; - Ast.slot_mutable = false; Ast.slot_ty = Some Ast.TY_nil } ;; let (slot_auto:Ast.slot) = { Ast.slot_mode = Ast.MODE_interior; - Ast.slot_mutable = true; Ast.slot_ty = None } ;; |