diff options
Diffstat (limited to 'src/jsifier.js')
-rw-r--r-- | src/jsifier.js | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/jsifier.js b/src/jsifier.js index 13d2642d..715b44f7 100644 --- a/src/jsifier.js +++ b/src/jsifier.js @@ -350,9 +350,6 @@ function JSify(data) { } var stolen = block.stolenCondition; if (stolen) { - function getActualLabelId(labelId) { - return labelId.split('|').slice(-1)[0]; - } var intendedTrueLabel = stolen.labelTrue; assert(block.entryLabels.length <= 2); [stolen.labelTrue, stolen.labelFalse].forEach(function(entry) { @@ -537,7 +534,7 @@ function JSify(data) { } makeFuncLineZyme('branch', function(item) { - //print('branch: ' + dump(item)); + if (item.stolen) return ';'; // We will appear where we were stolen to if (!item.ident) { return makeBranch(item.label); } else { |