commonMain.org.antlr.v4.kotlinruntime.ast.Node.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of antlr-kotlin-runtime-jvm Show documentation
Show all versions of antlr-kotlin-runtime-jvm Show documentation
Kotlin multiplatform port of ANTLR
package org.antlr.v4.kotlinruntime.ast
/**
* The Abstract Syntax Tree will be constituted by instances of Node.
*/
interface Node {
val parent: Node?
val position: Position?
}