Skip to content

Commit

Permalink
[truffle] Use NYI method for NYI stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
pmurias committed Jul 6, 2018
1 parent 34c1b32 commit 199115b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vm/jvm/Truffle.nqp
Expand Up @@ -525,11 +525,11 @@ class QAST::TruffleCompiler {
return TAST.new($OBJ, $action);
}
else {
nqp::die("Unimplemented var declaration type {$node.decl}");
self.NYI("var declaration type {$node.decl}");
}
}
else {
nqp::die("Unimplemented var scope {$node.scope}");
self.NYI("var scope {$node.scope}");
}
}

Expand Down

0 comments on commit 199115b

Please sign in to comment.