fix: module syntax — changed src_bux/*.bux from module X; to module X { ... }
This commit is contained in:
+2
-2
@@ -1,5 +1,5 @@
|
||||
// hir.bux — HIR (High-level Intermediate Representation) node types
|
||||
module Hir;
|
||||
module Hir {
|
||||
|
||||
// HIR node kinds
|
||||
const hLit: int = 0;
|
||||
@@ -187,4 +187,4 @@ func Hir_MakeStore(ptr: *HirNode, value: *HirNode, line: uint32, col: uint32) ->
|
||||
n.child1 = ptr;
|
||||
n.child2 = value;
|
||||
return n;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user