(cm, line)
| 421 | var validRegisters = [].concat(upperCaseAlphabet, lowerCaseAlphabet, numbers, ['-', '"', '.', ':', '_', '/']); |
| 422 | |
| 423 | function isLine(cm, line) { |
| 424 | return line >= cm.firstLine() && line <= cm.lastLine(); |
| 425 | } |
| 426 | function isLowerCase(k) { |
| 427 | return (/^[a-z]$/).test(k); |
| 428 | } |