(self)
| 310 | # into the label for the associated token ref; e.g., x=ID. |
| 311 | # |
| 312 | def getCurrentToken(self): |
| 313 | return self._input.LT(1) |
| 314 | |
| 315 | def notifyErrorListeners(self, msg:str, offendingToken:Token = None, e:RecognitionException = None): |
| 316 | if offendingToken is None: |
no test coverage detected