()
| 640 | return this.programSource.substring(this.startToken.start, this.endToken.end); |
| 641 | } |
| 642 | lineFor() { |
| 643 | return this.programSource.split("\n")[this.startToken.line - 1]; |
| 644 | } |
| 645 | static parseEventArgs(parser) { |
| 646 | var args = []; |
| 647 | if (parser.token(0).value === "(" && (parser.token(1).value === ")" || parser.token(2).value === "," || parser.token(2).value === ")")) { |