[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:
Ewan Mellor 2017-11-10 16:50:43 -08:00
parent b4c34da1f0
commit b2a55d1bec
No known key found for this signature in database
GPG Key ID: 7CE1C6BC9EC8645D
1 changed files with 0 additions and 4 deletions

View File

@ -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.
///