Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Convey frame name as is, even if empty.
  • Loading branch information
jnthn committed Jan 14, 2014
1 parent 08d6968 commit 9431f78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vm/moar/QAST/QASTCompilerMAST.nqp
Expand Up @@ -618,7 +618,7 @@ class QAST::MASTCompiler {

# Create an empty frame and add it to the compilation unit.
my $frame := MAST::Frame.new(
:name($node.name || self.unique('frame_name_')),
:name($node.name),
:cuuid($cuid));

$*MAST_COMPUNIT.add_frame($frame);
Expand Down

0 comments on commit 9431f78

Please sign in to comment.