Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

more comments #49

Merged
merged 1 commit into from
Mar 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ import org.antlr.v5.runtime.core.state.*
import org.antlr.v5.runtime.core.transition.RuleTransition

/**
* Used for runtime deserialization of ATNs from strings.
* ATN stands for Augmented Transition Network, see https://en.wikipedia.org/wiki/Augmented_transition_network
* Used for runtime deserialization of ATNs from literals.
*
* @param grammarType The type of the ATN
* @param maxTokenType The maximum value for any symbol recognized
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ import org.antlr.v5.runtime.core.state.DecisionState
import org.antlr.v5.runtime.core.state.StarLoopEntryState
import kotlin.concurrent.Volatile

/** DFA stands for Deterministic Finite Automaton, see https://en.wikipedia.org/wiki/Deterministic_finite_automaton
*/

public open class DFA(
/**
* From which ATN state did we create this DFA?
Expand Down
Loading