diff options
author | alon@honor <none@none> | 2010-09-20 18:59:15 -0700 |
---|---|---|
committer | alon@honor <none@none> | 2010-09-20 18:59:15 -0700 |
commit | fea809cb090c648f58f11561f7f25ce813d9944f (patch) | |
tree | 355bc25d3bab157799caf339f6917683aca9ac41 /src/utility.js | |
parent | 9e66429fa4154058798be6cc554408697cc6bfc8 (diff) |
refactor into files
--HG--
rename : src/parser.js => src/compiler.js
Diffstat (limited to 'src/utility.js')
-rw-r--r-- | src/utility.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utility.js b/src/utility.js index 28d3fa93..2cce3f4c 100644 --- a/src/utility.js +++ b/src/utility.js @@ -1,3 +1,4 @@ +// General JS utilities function dump(item) { function lineify(text) { @@ -134,7 +135,6 @@ function splitter(array, filter) { return { leftIn: leftIn, splitOut: splitOut }; } -DEBUG_TAGS_SHOWING = ['labelbranching', 'enzymatic']; function dcheck(tag) { return DEBUG_TAGS_SHOWING.indexOf(arguments[0]) != -1; } |