()
| 116 | } |
| 117 | |
| 118 | isKeywordTypeof(): boolean { |
| 119 | return this.type === TokenType.Keyword && this.strValue === 'typeof'; |
| 120 | } |
| 121 | |
| 122 | isKeywordVoid(): boolean { |
| 123 | return this.type === TokenType.Keyword && this.strValue === 'void'; |
no outgoing calls
no test coverage detected