commonMain.piacenti.dslmaker.structures.FoundIndex.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dsl-maker-js Show documentation
Show all versions of dsl-maker-js Show documentation
Kotlin multiplatform library to facilitate creation of DSLs with ANTLR or a simple built in parser
package piacenti.dslmaker.structures
import piacenti.dslmaker.abstraction.ProductionStep
/**
* Created by Piacenti on 10/14/2015.
*/
class FoundIndex(var index: Int, var found: Boolean) {
val fireParameters = ArrayList()
val matchTokens = ArrayList()
val fullPath = mutableListOf()
var astNode: ASTNode? = null
override fun toString(): String {
return "FoundIndex{index=$index, found=$found}"
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy