Skip to content

Commit 02f9804

Browse files
committed
[js] Stop special casing forceouterctx in post_deserialize.
1 parent 814b0eb commit 02f9804

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/vm/js/Compiler.nqp

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1440,12 +1440,7 @@ class QAST::CompilerJS does DWIMYNameMangling does SerializeOnce {
14401440

14411441
my @post;
14421442
for $node.post_deserialize -> $node {
1443-
if self.is_op($node, 'forceouterctx') {
1444-
}
1445-
else {
1446-
self.log($node.dump);
14471443
@post.push(self.as_js($node, :want($T_VOID)));
1448-
}
14491444
}
14501445
my $post := Chunk.new($T_VOID, "", @post);
14511446

0 commit comments

Comments
 (0)