diff options
author | bd-912 <bdunahu@colostate.edu> | 2024-04-09 23:48:26 -0600 |
---|---|---|
committer | bd-912 <bdunahu@colostate.edu> | 2024-04-09 23:48:26 -0600 |
commit | 61a28b7f8e709d1884ccab15f0dc38ed19dfde70 (patch) | |
tree | 4a08bf487d7a18cc8cd328876067e57d261920f6 /typecheck/library/TypeCheckSimp.java | |
parent | c1e124b957fa840f7bd8da9ffc6871140cfabf16 (diff) |
Partial arguments in Vaporize.MessageSend, Typecheck for milestone
Diffstat (limited to 'typecheck/library/TypeCheckSimp.java')
-rw-r--r-- | typecheck/library/TypeCheckSimp.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/typecheck/library/TypeCheckSimp.java b/typecheck/library/TypeCheckSimp.java index b3a9ca3..1a77477 100644 --- a/typecheck/library/TypeCheckSimp.java +++ b/typecheck/library/TypeCheckSimp.java @@ -434,7 +434,7 @@ public class TypeCheckSimp extends GJDepthFirst<TypeInstance,SymbolTable> { ++this.offset; this.printNode(n, symt, true, null); - TypeInstance ret = new TypeInstance(null, TypeEnum.integer); + TypeInstance ret = new TypeInstance(null, TypeEnum.integer); this.printNode(n, symt, false, ret.getType()); --this.offset; |