aboutsummaryrefslogtreecommitdiff
path: root/src/jsifier.js
diff options
context:
space:
mode:
authoralon@honor <none@none>2010-10-16 14:38:27 -0700
committeralon@honor <none@none>2010-10-16 14:38:27 -0700
commit6fa5f7160c816fc982432dc5f990a1da14d09175 (patch)
treec01d02517eea83dc321874ca3ac5de3295be6496 /src/jsifier.js
parent9290e904560e8994d8c657a771150de0d86a4b49 (diff)
remove unneeded BREAKs
Diffstat (limited to 'src/jsifier.js')
-rw-r--r--src/jsifier.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/jsifier.js b/src/jsifier.js
index 8b67818a..b6c36db0 100644
--- a/src/jsifier.js
+++ b/src/jsifier.js
@@ -342,7 +342,6 @@ function JSify(data) {
ret += walkBlock(block.inner, indent + ' ');
ret += indent + '}\n';
} else if (block.type == 'multiple') {
- // TODO: Remove the loop here
var first = true;
ret += indent + ((block.entry in usedLabels) ? '' : (block.entry+':')) + ' do { \n';
block.entryLabels.forEach(function(entryLabel) {