commonMain.org.antlr.v4.kotlinruntime.AbstractCharStreams.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-js Show documentation
Show all versions of antlr-kotlin-runtime-js Show documentation
Kotlin multiplatform port of ANTLR
The newest version!
package org.antlr.v4.kotlinruntime
import kotlin.jvm.JvmOverloads
abstract class AbstractCharStreams {
/**
* Creates a [CharStream] given a [String] and the `sourceName`
* from which it came.
*/
@JvmOverloads
fun fromString(s: String, sourceName: String = IntStream.UNKNOWN_SOURCE_NAME): CharStream {
return StringCharStream(s, sourceName)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy