Skip to content

Commit

Permalink
more comments
Browse files Browse the repository at this point in the history
Signed-off-by: Eric Vergnaud <eric.vergnaud@wanadoo.fr>
  • Loading branch information
ericvergnaud committed Mar 20, 2024
1 parent 08f4e2b commit 8ea8325
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
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

0 comments on commit 8ea8325

Please sign in to comment.