We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f64f91d commit 0f72548Copy full SHA for 0f72548
mustang/Loader.ooc
@@ -18,10 +18,10 @@ TemplateLoader: class {
18
init: func ~singlePath(searchPath: String) {
19
paths := LinkedList<String> new()
20
paths add(searchPath)
21
- this(paths)
+ init(paths)
22
}
23
init: func ~useCwd {
24
- this(File getCwd())
+ init(File getCwd())
25
26
27
addPath: func(path: String) {
mustang/Value.ooc
@@ -64,7 +64,7 @@ HashValue: class extends Value {
64
hash: HashMap<String, Value>
65
66
init: func ~fromHashMap(=hash) {}
67
- init: func ~empty { this(HashMap<String, Value> new()) }
+ init: func ~empty { init(HashMap<String, Value> new()) }
68
69
emit: func -> String { "Hash" }
70
0 commit comments