(error, start, end)
| 5878 | } |
| 5879 | |
| 5880 | function throwError(error, start, end) { |
| 5881 | end = end || index; |
| 5882 | throw Error("Lexer Error: " + error + " at column" + |
| 5883 | (isDefined(start) |
| 5884 | ? "s " + start + "-" + index + " [" + text.substring(start, end) + "]" |
| 5885 | : " " + end) + |
| 5886 | " in expression [" + text + "]."); |
| 5887 | } |
| 5888 | |
| 5889 | function readNumber() { |
| 5890 | var number = ""; |
no test coverage detected