Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add missing semicolon when declaring a function.
  • Loading branch information
pmurias committed Aug 13, 2014
1 parent ae705ed commit 8ad493d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vm/js/QAST/Compiler.nqp
Expand Up @@ -407,7 +407,7 @@ class QAST::CompilerJS does DWIMYNameMangling {
self.declare_js_vars($*BLOCK.tmps),
self.declare_js_vars($*BLOCK.js_lexicals),
$stmts,
"\}\n"];
"\};\n"];
}

if $node.blocktype eq 'immediate' {
Expand Down

0 comments on commit 8ad493d

Please sign in to comment.