Skip to content

Commit 8946a40

Browse files
committed
Fix VariableNode to use Context get() method.
1 parent a3123c0 commit 8946a40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mustang/Node.ooc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ VariableNode: class extends TNode {
3333
init: func(=variableName) {}
3434

3535
render: func(context: Context, out: Writer) {
36-
variable := context resolve(variableName)
36+
variable := context get(variableName)
3737
out write(variable toString())
3838
}
3939

0 commit comments

Comments
 (0)