commonMain.org.antlr.v4.kotlinruntime.atn.LexerPopModeAction.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
/*
* Copyright (c) 2012-2017 The ANTLR Project. All rights reserved.
* Use of this file is governed by the BSD 3-clause license that
* can be found in the LICENSE.txt file in the project root.
*/
package org.antlr.v4.kotlinruntime.atn
import org.antlr.v4.kotlinruntime.Lexer
import org.antlr.v4.kotlinruntime.misc.MurmurHash
/**
* Implements the `popMode` lexer action by calling [Lexer.popMode].
*
*
* The `popMode` command does not have any parameters, so this action is
* implemented as a singleton instance exposed by [.INSTANCE].
*
* @author Sam Harwell
* @since 4.2
*/
class LexerPopModeAction
/**
* Constructs the singleton instance of the lexer `popMode` command.
*/
private constructor() : LexerAction {
/**
* {@inheritDoc}
* @return This method returns [LexerActionType.POP_MODE].
*/
override val actionType: LexerActionType
get() = LexerActionType.POP_MODE
/**
* {@inheritDoc}
* @return This method returns `false`.
*/
override val isPositionDependent: Boolean
get() = false
/**
* {@inheritDoc}
*
*
* This action is implemented by calling [Lexer.popMode].
*/
override fun execute(lexer: Lexer) {
lexer.popMode()
}
override fun hashCode(): Int {
var hash = MurmurHash.initialize()
hash = MurmurHash.update(hash, actionType.ordinal)
return MurmurHash.finish(hash, 1)
}
override fun equals(obj: Any?): Boolean {
return obj === this
}
override fun toString(): String {
return "popMode"
}
companion object {
/**
* Provides a singleton instance of this parameterless lexer action.
*/
val INSTANCE = LexerPopModeAction()
}
}