You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BaseErrorListener contains some parameter names which are presumably taken directly from the original Java version.
The one which grates on me the most is msg: String in syntaxError - I had renamed this to message in my subclass, but with Kotlin, you get a compiler warning if the names don't match precisely. So really any parameter names in the base class should be un-abbreviated.
The text was updated successfully, but these errors were encountered:
BaseErrorListener
contains some parameter names which are presumably taken directly from the original Java version.The one which grates on me the most is
msg: String
insyntaxError
- I had renamed this tomessage
in my subclass, but with Kotlin, you get a compiler warning if the names don't match precisely. So really any parameter names in the base class should be un-abbreviated.The text was updated successfully, but these errors were encountered: