Skip to content

Commit 5f67fae

Browse files
committed
Don't neglect to pass down :$want.
1 parent 50b2038 commit 5f67fae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vm/moar/QAST/QASTCompilerMAST.nqp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ my class MASTCompilerInstance {
397397
self.coerce(self.compile_node(want($qast, $want), :$want), $want)
398398
}
399399
else {
400-
self.coerce(self.compile_node($qast), $want)
400+
self.coerce(self.compile_node($qast, :$want), $want)
401401
}
402402
}
403403
else {

0 commit comments

Comments
 (0)