Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Enable emitting deserialize code by default.
  • Loading branch information
jnthn committed Jan 18, 2013
1 parent 689f958 commit b8395aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lib/QAST/JASTCompiler.nqp
Expand Up @@ -2,7 +2,7 @@ use JASTNodes;
use QASTNode;

# Should we try handling all the SC stuff?
my $ENABLE_SC_COMP := 0;
my $ENABLE_SC_COMP := 1;

# Some common types we'll need.
my $TYPE_TC := 'Lorg/perl6/nqp/runtime/ThreadContext;';
Expand Down
1 change: 1 addition & 0 deletions nqp-jvm-cc.nqp
Expand Up @@ -7,6 +7,7 @@ sub MAIN(*@ARGS) {

$nqpcomp.stages(< start parse past jast jbc jvm >);
$nqpcomp.HOW.add_method($nqpcomp, 'jast', method ($qast, *%adverbs) {
$qast.compilation_mode(1);
QAST::CompilerJAST.jast($qast);
});
$nqpcomp.HOW.add_method($nqpcomp, 'jbc', method ($jast, *%adverbs) {
Expand Down

0 comments on commit b8395aa

Please sign in to comment.