From 1e708fb373def878a78005475bb0a1de235f4515 Mon Sep 17 00:00:00 2001 From: Sebastian McKenzie Date: Fri, 6 Feb 2015 01:59:45 +1100 Subject: [PATCH] fix traverse test --- lib/6to5/traversal/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/6to5/traversal/index.js b/lib/6to5/traversal/index.js index 8ebb8fbcd5..16d0934bfb 100644 --- a/lib/6to5/traversal/index.js +++ b/lib/6to5/traversal/index.js @@ -96,7 +96,7 @@ traverse.explode = function (obj) { function hasBlacklistedType(node, parent, scope, state) { if (node.type === state.type) { state.has = true; - context.skip(); + this.skip(); } }