samlang.errors.IllegalThisError.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of samlang Show documentation
Show all versions of samlang Show documentation
Sam's Programming Language
package samlang.errors
import samlang.parser.Position
class IllegalThisError(position: Position) : CompileTimeError.WithPosition(
reason = "Keyword 'this' cannot be used in this context.",
position = position
)