[Swift] Remove unused ATN.modeNameToStartState.
Remove unused ATN.modeNameToStartState. In the Java runtime this is only used by LexerATNFactory (i.e. during lexer generation) and we don't have the equivalent in the Swift runtime at all.
This commit is contained in:
parent
b4c34da1f0
commit
b2a55d1bec
|
@ -28,10 +28,6 @@ public class ATN {
|
|||
///
|
||||
public final var ruleToStopState: [RuleStopState]!
|
||||
|
||||
|
||||
public final let modeNameToStartState: Dictionary<String, TokensStartState> = Dictionary<String, TokensStartState>()
|
||||
//LinkedHashMap<String, TokensStartState>();
|
||||
|
||||
///
|
||||
/// The type of the ATN.
|
||||
///
|
||||
|
|
Loading…
Reference in New Issue