(parser)
| 649 | return this.programSource.split("\n")[this.startToken.line - 1]; |
| 650 | } |
| 651 | static parseEventArgs(parser) { |
| 652 | var args = []; |
| 653 | if (parser.token(0).value === "(" && (parser.token(1).value === ")" || parser.token(2).value === "," || parser.token(2).value === ")")) { |
| 654 | parser.matchOpToken("("); |
| 655 | do { |
| 656 | args.push(parser.requireTokenType("IDENTIFIER")); |
| 657 | } while (parser.matchOpToken(",")); |
| 658 | parser.requireOpToken(")"); |
| 659 | } |
| 660 | return args; |
| 661 | } |
| 662 | }; |
| 663 | var Expression = class extends ParseElement { |
| 664 | constructor() { |
no test coverage detected