diff --git a/index.js b/index.js index e57eb01..ab52728 100644 --- a/index.js +++ b/index.js @@ -219,6 +219,10 @@ function unused(src) { exec(node.body, context); exec(node.test, context); }, + LabeledStatement: function(node, context) { + exec(node.label, context); + exec(node.body, context); + }, ContinueStatement: function() { }, BreakStatement: function() {