()
| 100 | } |
| 101 | |
| 102 | isKeywordUndefined(): boolean { |
| 103 | return this.type === TokenType.Keyword && this.strValue === 'undefined'; |
| 104 | } |
| 105 | |
| 106 | isKeywordTrue(): boolean { |
| 107 | return this.type === TokenType.Keyword && this.strValue === 'true'; |
no outgoing calls
no test coverage detected