samlang.errors.ExtraFieldInObjectError.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
The newest version!
package samlang.errors
import samlang.parser.Position
class ExtraFieldInObjectError(extraField: String, position: Position) : CompileTimeError.WithPosition(
reason = "Extra field $extraField in the object", position = position
)