()
| 120 | } |
| 121 | |
| 122 | isKeywordVoid(): boolean { |
| 123 | return this.type === TokenType.Keyword && this.strValue === 'void'; |
| 124 | } |
| 125 | |
| 126 | isKeywordIn(): boolean { |
| 127 | return this.type === TokenType.Keyword && this.strValue === 'in'; |
no outgoing calls
no test coverage detected