(words)
| 12 | "use strict"; |
| 13 | |
| 14 | function wordRegexp(words) { |
| 15 | return new RegExp("^((" + words.join(")|(") + "))\\b"); |
| 16 | } |
| 17 | |
| 18 | var wordOperators = wordRegexp(["and", "or", "not", "is"]); |
| 19 | var commonKeywords = ["as", "assert", "break", "class", "continue", |
no outgoing calls
no test coverage detected
searching dependent graphs…