├── .clang-format ├── .eslintrc.json ├── .gitignore ├── .npmignore ├── .vscode ├── c_cpp_properties.json ├── launch.json └── settings.json ├── License.txt ├── antlr ├── antlr-4.13.1-complete.jar └── antlr4-4.13.1-SNAPSHOT-complete.jar ├── antlr4-cpp-runtime ├── ANTLRErrorListener.cpp ├── ANTLRErrorListener.h ├── ANTLRErrorStrategy.cpp ├── ANTLRErrorStrategy.h ├── ANTLRFileStream.cpp ├── ANTLRFileStream.h ├── ANTLRInputStream.cpp ├── ANTLRInputStream.h ├── BailErrorStrategy.cpp ├── BailErrorStrategy.h ├── BaseErrorListener.cpp ├── BaseErrorListener.h ├── BufferedTokenStream.cpp ├── BufferedTokenStream.h ├── CharStream.cpp ├── CharStream.h ├── CommonToken.cpp ├── CommonToken.h ├── CommonTokenFactory.cpp ├── CommonTokenFactory.h ├── CommonTokenStream.cpp ├── CommonTokenStream.h ├── ConsoleErrorListener.cpp ├── ConsoleErrorListener.h ├── DefaultErrorStrategy.cpp ├── DefaultErrorStrategy.h ├── DiagnosticErrorListener.cpp ├── DiagnosticErrorListener.h ├── Exceptions.cpp ├── Exceptions.h ├── FailedPredicateException.cpp ├── FailedPredicateException.h ├── FlatHashMap.h ├── FlatHashSet.h ├── InputMismatchException.cpp ├── InputMismatchException.h ├── IntStream.cpp ├── IntStream.h ├── InterpreterRuleContext.cpp ├── InterpreterRuleContext.h ├── Lexer.cpp ├── Lexer.h ├── LexerInterpreter.cpp ├── LexerInterpreter.h ├── LexerNoViableAltException.cpp ├── LexerNoViableAltException.h ├── ListTokenSource.cpp ├── ListTokenSource.h ├── NoViableAltException.cpp ├── NoViableAltException.h ├── Parser.cpp ├── Parser.h ├── ParserInterpreter.cpp ├── ParserInterpreter.h ├── ParserRuleContext.cpp ├── ParserRuleContext.h ├── ProxyErrorListener.cpp ├── ProxyErrorListener.h ├── RecognitionException.cpp ├── RecognitionException.h ├── Recognizer.cpp ├── Recognizer.h ├── RuleContext.cpp ├── RuleContext.h ├── RuleContextWithAltNum.cpp ├── RuleContextWithAltNum.h ├── RuntimeMetaData.cpp ├── RuntimeMetaData.h ├── Token.cpp ├── Token.h ├── TokenFactory.h ├── TokenSource.cpp ├── TokenSource.h ├── TokenStream.cpp ├── TokenStream.h ├── TokenStreamRewriter.cpp ├── TokenStreamRewriter.h ├── UnbufferedCharStream.cpp ├── UnbufferedCharStream.h ├── UnbufferedTokenStream.cpp ├── UnbufferedTokenStream.h ├── Version.h ├── Vocabulary.cpp ├── Vocabulary.h ├── WritableToken.cpp ├── WritableToken.h ├── antlr4-common.h ├── antlr4-runtime.h ├── atn │ ├── ATN.cpp │ ├── ATN.h │ ├── ATNConfig.cpp │ ├── ATNConfig.h │ ├── ATNConfigSet.cpp │ ├── ATNConfigSet.h │ ├── ATNDeserializationOptions.cpp │ ├── ATNDeserializationOptions.h │ ├── ATNDeserializer.cpp │ ├── ATNDeserializer.h │ ├── ATNSimulator.cpp │ ├── ATNSimulator.h │ ├── ATNState.cpp │ ├── ATNState.h │ ├── ATNStateType.cpp │ ├── ATNStateType.h │ ├── ATNType.h │ ├── ActionTransition.cpp │ ├── ActionTransition.h │ ├── AmbiguityInfo.cpp │ ├── AmbiguityInfo.h │ ├── ArrayPredictionContext.cpp │ ├── ArrayPredictionContext.h │ ├── AtomTransition.cpp │ ├── AtomTransition.h │ ├── BasicBlockStartState.h │ ├── BasicState.h │ ├── BlockEndState.h │ ├── BlockStartState.h │ ├── ContextSensitivityInfo.cpp │ ├── ContextSensitivityInfo.h │ ├── DecisionEventInfo.cpp │ ├── DecisionEventInfo.h │ ├── DecisionInfo.cpp │ ├── DecisionInfo.h │ ├── DecisionState.cpp │ ├── DecisionState.h │ ├── EpsilonTransition.cpp │ ├── EpsilonTransition.h │ ├── ErrorInfo.cpp │ ├── ErrorInfo.h │ ├── HashUtils.h │ ├── LL1Analyzer.cpp │ ├── LL1Analyzer.h │ ├── LexerATNConfig.cpp │ ├── LexerATNConfig.h │ ├── LexerATNSimulator.cpp │ ├── LexerATNSimulator.h │ ├── LexerAction.cpp │ ├── LexerAction.h │ ├── LexerActionExecutor.cpp │ ├── LexerActionExecutor.h │ ├── LexerActionType.h │ ├── LexerChannelAction.cpp │ ├── LexerChannelAction.h │ ├── LexerCustomAction.cpp │ ├── LexerCustomAction.h │ ├── LexerIndexedCustomAction.cpp │ ├── LexerIndexedCustomAction.h │ ├── LexerModeAction.cpp │ ├── LexerModeAction.h │ ├── LexerMoreAction.cpp │ ├── LexerMoreAction.h │ ├── LexerPopModeAction.cpp │ ├── LexerPopModeAction.h │ ├── LexerPushModeAction.cpp │ ├── LexerPushModeAction.h │ ├── LexerSkipAction.cpp │ ├── LexerSkipAction.h │ ├── LexerTypeAction.cpp │ ├── LexerTypeAction.h │ ├── LookaheadEventInfo.cpp │ ├── LookaheadEventInfo.h │ ├── LoopEndState.h │ ├── NotSetTransition.cpp │ ├── NotSetTransition.h │ ├── OrderedATNConfigSet.cpp │ ├── OrderedATNConfigSet.h │ ├── ParseInfo.cpp │ ├── ParseInfo.h │ ├── ParserATNSimulator.cpp │ ├── ParserATNSimulator.h │ ├── ParserATNSimulatorOptions.h │ ├── PlusBlockStartState.h │ ├── PlusLoopbackState.h │ ├── PrecedencePredicateTransition.cpp │ ├── PrecedencePredicateTransition.h │ ├── PredicateEvalInfo.cpp │ ├── PredicateEvalInfo.h │ ├── PredicateTransition.cpp │ ├── PredicateTransition.h │ ├── PredictionContext.cpp │ ├── PredictionContext.h │ ├── PredictionContextCache.cpp │ ├── PredictionContextCache.h │ ├── PredictionContextMergeCache.cpp │ ├── PredictionContextMergeCache.h │ ├── PredictionContextMergeCacheOptions.h │ ├── PredictionContextType.h │ ├── PredictionMode.cpp │ ├── PredictionMode.h │ ├── ProfilingATNSimulator.cpp │ ├── ProfilingATNSimulator.h │ ├── RangeTransition.cpp │ ├── RangeTransition.h │ ├── RuleStartState.h │ ├── RuleStopState.h │ ├── RuleTransition.cpp │ ├── RuleTransition.h │ ├── SemanticContext.cpp │ ├── SemanticContext.h │ ├── SemanticContextType.h │ ├── SerializedATNView.h │ ├── SetTransition.cpp │ ├── SetTransition.h │ ├── SingletonPredictionContext.cpp │ ├── SingletonPredictionContext.h │ ├── StarBlockStartState.h │ ├── StarLoopEntryState.h │ ├── StarLoopbackState.cpp │ ├── StarLoopbackState.h │ ├── TokensStartState.h │ ├── Transition.cpp │ ├── Transition.h │ ├── TransitionType.cpp │ ├── TransitionType.h │ ├── WildcardTransition.cpp │ └── WildcardTransition.h ├── dfa │ ├── DFA.cpp │ ├── DFA.h │ ├── DFASerializer.cpp │ ├── DFASerializer.h │ ├── DFAState.cpp │ ├── DFAState.h │ ├── LexerDFASerializer.cpp │ └── LexerDFASerializer.h ├── internal │ ├── Synchronization.cpp │ └── Synchronization.h ├── misc │ ├── InterpreterDataReader.cpp │ ├── InterpreterDataReader.h │ ├── Interval.cpp │ ├── Interval.h │ ├── IntervalSet.cpp │ ├── IntervalSet.h │ ├── MurmurHash.cpp │ ├── MurmurHash.h │ ├── Predicate.cpp │ └── Predicate.h ├── support │ ├── Any.cpp │ ├── Any.h │ ├── Arrays.cpp │ ├── Arrays.h │ ├── BitSet.h │ ├── CPPUtils.cpp │ ├── CPPUtils.h │ ├── Casts.h │ ├── Declarations.h │ ├── StringUtils.cpp │ ├── StringUtils.h │ ├── Unicode.h │ ├── Utf8.cpp │ └── Utf8.h └── tree │ ├── AbstractParseTreeVisitor.h │ ├── ErrorNode.h │ ├── ErrorNodeImpl.cpp │ ├── ErrorNodeImpl.h │ ├── IterativeParseTreeWalker.cpp │ ├── IterativeParseTreeWalker.h │ ├── ParseTree.cpp │ ├── ParseTree.h │ ├── ParseTreeListener.cpp │ ├── ParseTreeListener.h │ ├── ParseTreeProperty.h │ ├── ParseTreeType.h │ ├── ParseTreeVisitor.cpp │ ├── ParseTreeVisitor.h │ ├── ParseTreeWalker.cpp │ ├── ParseTreeWalker.h │ ├── TerminalNode.h │ ├── TerminalNodeImpl.cpp │ ├── TerminalNodeImpl.h │ ├── Trees.cpp │ ├── Trees.h │ ├── pattern │ ├── Chunk.cpp │ ├── Chunk.h │ ├── ParseTreeMatch.cpp │ ├── ParseTreeMatch.h │ ├── ParseTreePattern.cpp │ ├── ParseTreePattern.h │ ├── ParseTreePatternMatcher.cpp │ ├── ParseTreePatternMatcher.h │ ├── RuleTagToken.cpp │ ├── RuleTagToken.h │ ├── TagChunk.cpp │ ├── TagChunk.h │ ├── TextChunk.cpp │ ├── TextChunk.h │ ├── TokenTagToken.cpp │ └── TokenTagToken.h │ └── xpath │ ├── XPath.cpp │ ├── XPath.h │ ├── XPathElement.cpp │ ├── XPathElement.h │ ├── XPathLexer.cpp │ ├── XPathLexer.g4 │ ├── XPathLexer.h │ ├── XPathLexer.interp │ ├── XPathLexer.tokens │ ├── XPathLexerErrorListener.cpp │ ├── XPathLexerErrorListener.h │ ├── XPathRuleAnywhereElement.cpp │ ├── XPathRuleAnywhereElement.h │ ├── XPathRuleElement.cpp │ ├── XPathRuleElement.h │ ├── XPathTokenAnywhereElement.cpp │ ├── XPathTokenAnywhereElement.h │ ├── XPathTokenElement.cpp │ ├── XPathTokenElement.h │ ├── XPathWildcardAnywhereElement.cpp │ ├── XPathWildcardAnywhereElement.h │ ├── XPathWildcardElement.cpp │ └── XPathWildcardElement.h ├── benchmarks └── mysql │ ├── data │ ├── bitrix_queries_cut.sql │ ├── rdbms-info.json │ ├── sakila-db │ │ ├── sakila-data.sql │ │ ├── sakila-schema.sql │ │ └── single_statement.sql │ └── statements.txt │ ├── generate.sh │ ├── helpers.ts │ ├── predefined.tokens │ ├── readme.md │ └── targets │ ├── antlr4-cpp │ ├── MySQLBaseLexer.cpp │ ├── MySQLBaseLexer.h │ ├── MySQLBaseRecognizer.cpp │ ├── MySQLBaseRecognizer.h │ ├── MySQLLexer.cpp │ ├── MySQLLexer.g4 │ ├── MySQLLexer.h │ ├── MySQLLexer.interp │ ├── MySQLLexer.tokens │ ├── MySQLParser.cpp │ ├── MySQLParser.g4 │ ├── MySQLParser.h │ ├── MySQLParser.interp │ ├── MySQLParser.tokens │ ├── MySQLParserBaseListener.cpp │ ├── MySQLParserBaseListener.h │ ├── MySQLParserBaseVisitor.cpp │ ├── MySQLParserBaseVisitor.h │ ├── MySQLParserListener.cpp │ ├── MySQLParserListener.h │ ├── MySQLParserVisitor.cpp │ ├── MySQLParserVisitor.h │ ├── MySQLRecognizerCommon.cpp │ ├── MySQLRecognizerCommon.h │ ├── ParseServiceCpp.cpp │ ├── ParseServiceCpp.h │ ├── antlr4-runtime │ │ ├── ANTLRErrorListener.h │ │ ├── ANTLRErrorStrategy.h │ │ ├── ANTLRFileStream.h │ │ ├── ANTLRInputStream.h │ │ ├── BailErrorStrategy.h │ │ ├── BaseErrorListener.h │ │ ├── BufferedTokenStream.h │ │ ├── CharStream.h │ │ ├── CommonToken.h │ │ ├── CommonTokenFactory.h │ │ ├── CommonTokenStream.h │ │ ├── ConsoleErrorListener.h │ │ ├── DefaultErrorStrategy.h │ │ ├── DiagnosticErrorListener.h │ │ ├── Exceptions.h │ │ ├── FailedPredicateException.h │ │ ├── FlatHashMap.h │ │ ├── FlatHashSet.h │ │ ├── InputMismatchException.h │ │ ├── IntStream.h │ │ ├── InterpreterRuleContext.h │ │ ├── Lexer.h │ │ ├── LexerInterpreter.h │ │ ├── LexerNoViableAltException.h │ │ ├── ListTokenSource.h │ │ ├── NoViableAltException.h │ │ ├── Parser.h │ │ ├── ParserInterpreter.h │ │ ├── ParserRuleContext.h │ │ ├── ProxyErrorListener.h │ │ ├── RecognitionException.h │ │ ├── Recognizer.h │ │ ├── RuleContext.h │ │ ├── RuleContextWithAltNum.h │ │ ├── RuntimeMetaData.h │ │ ├── Token.h │ │ ├── TokenFactory.h │ │ ├── TokenSource.h │ │ ├── TokenStream.h │ │ ├── TokenStreamRewriter.h │ │ ├── UnbufferedCharStream.h │ │ ├── UnbufferedTokenStream.h │ │ ├── Version.h │ │ ├── Vocabulary.h │ │ ├── WritableToken.h │ │ ├── antlr4-common.h │ │ ├── antlr4-runtime.h │ │ ├── atn │ │ │ ├── ATN.h │ │ │ ├── ATNConfig.h │ │ │ ├── ATNConfigSet.h │ │ │ ├── ATNDeserializationOptions.h │ │ │ ├── ATNDeserializer.h │ │ │ ├── ATNSimulator.h │ │ │ ├── ATNState.h │ │ │ ├── ATNStateType.h │ │ │ ├── ATNType.h │ │ │ ├── ActionTransition.h │ │ │ ├── AmbiguityInfo.h │ │ │ ├── ArrayPredictionContext.h │ │ │ ├── AtomTransition.h │ │ │ ├── BasicBlockStartState.h │ │ │ ├── BasicState.h │ │ │ ├── BlockEndState.h │ │ │ ├── BlockStartState.h │ │ │ ├── ContextSensitivityInfo.h │ │ │ ├── DecisionEventInfo.h │ │ │ ├── DecisionInfo.h │ │ │ ├── DecisionState.h │ │ │ ├── EpsilonTransition.h │ │ │ ├── ErrorInfo.h │ │ │ ├── HashUtils.h │ │ │ ├── LL1Analyzer.h │ │ │ ├── LexerATNConfig.h │ │ │ ├── LexerATNSimulator.h │ │ │ ├── LexerAction.h │ │ │ ├── LexerActionExecutor.h │ │ │ ├── LexerActionType.h │ │ │ ├── LexerChannelAction.h │ │ │ ├── LexerCustomAction.h │ │ │ ├── LexerIndexedCustomAction.h │ │ │ ├── LexerModeAction.h │ │ │ ├── LexerMoreAction.h │ │ │ ├── LexerPopModeAction.h │ │ │ ├── LexerPushModeAction.h │ │ │ ├── LexerSkipAction.h │ │ │ ├── LexerTypeAction.h │ │ │ ├── LookaheadEventInfo.h │ │ │ ├── LoopEndState.h │ │ │ ├── NotSetTransition.h │ │ │ ├── OrderedATNConfigSet.h │ │ │ ├── ParseInfo.h │ │ │ ├── ParserATNSimulator.h │ │ │ ├── ParserATNSimulatorOptions.h │ │ │ ├── PlusBlockStartState.h │ │ │ ├── PlusLoopbackState.h │ │ │ ├── PrecedencePredicateTransition.h │ │ │ ├── PredicateEvalInfo.h │ │ │ ├── PredicateTransition.h │ │ │ ├── PredictionContext.h │ │ │ ├── PredictionContextCache.h │ │ │ ├── PredictionContextMergeCache.h │ │ │ ├── PredictionContextMergeCacheOptions.h │ │ │ ├── PredictionContextType.h │ │ │ ├── PredictionMode.h │ │ │ ├── ProfilingATNSimulator.h │ │ │ ├── RangeTransition.h │ │ │ ├── RuleStartState.h │ │ │ ├── RuleStopState.h │ │ │ ├── RuleTransition.h │ │ │ ├── SemanticContext.h │ │ │ ├── SemanticContextType.h │ │ │ ├── SerializedATNView.h │ │ │ ├── SetTransition.h │ │ │ ├── SingletonPredictionContext.h │ │ │ ├── StarBlockStartState.h │ │ │ ├── StarLoopEntryState.h │ │ │ ├── StarLoopbackState.h │ │ │ ├── TokensStartState.h │ │ │ ├── Transition.h │ │ │ ├── TransitionType.h │ │ │ └── WildcardTransition.h │ │ ├── dfa │ │ │ ├── DFA.h │ │ │ ├── DFASerializer.h │ │ │ ├── DFAState.h │ │ │ └── LexerDFASerializer.h │ │ ├── internal │ │ │ └── Synchronization.h │ │ ├── misc │ │ │ ├── InterpreterDataReader.h │ │ │ ├── Interval.h │ │ │ ├── IntervalSet.h │ │ │ ├── MurmurHash.h │ │ │ └── Predicate.h │ │ ├── support │ │ │ ├── Any.h │ │ │ ├── Arrays.h │ │ │ ├── BitSet.h │ │ │ ├── CPPUtils.h │ │ │ ├── Casts.h │ │ │ ├── Declarations.h │ │ │ ├── StringUtils.h │ │ │ ├── Unicode.h │ │ │ └── Utf8.h │ │ └── tree │ │ │ ├── AbstractParseTreeVisitor.h │ │ │ ├── ErrorNode.h │ │ │ ├── ErrorNodeImpl.h │ │ │ ├── IterativeParseTreeWalker.h │ │ │ ├── ParseTree.h │ │ │ ├── ParseTreeListener.h │ │ │ ├── ParseTreeProperty.h │ │ │ ├── ParseTreeType.h │ │ │ ├── ParseTreeVisitor.h │ │ │ ├── ParseTreeWalker.h │ │ │ ├── TerminalNode.h │ │ │ ├── TerminalNodeImpl.h │ │ │ ├── Trees.h │ │ │ ├── pattern │ │ │ ├── Chunk.h │ │ │ ├── ParseTreeMatch.h │ │ │ ├── ParseTreePattern.h │ │ │ ├── ParseTreePatternMatcher.h │ │ │ ├── RuleTagToken.h │ │ │ ├── TagChunk.h │ │ │ ├── TextChunk.h │ │ │ └── TokenTagToken.h │ │ │ └── xpath │ │ │ ├── XPath.h │ │ │ ├── XPathElement.h │ │ │ ├── XPathLexer.h │ │ │ ├── XPathLexerErrorListener.h │ │ │ ├── XPathRuleAnywhereElement.h │ │ │ ├── XPathRuleElement.h │ │ │ ├── XPathTokenAnywhereElement.h │ │ │ ├── XPathTokenElement.h │ │ │ ├── XPathWildcardAnywhereElement.h │ │ │ └── XPathWildcardElement.h │ ├── build.sh │ ├── main.cpp │ ├── mysql-benchmark │ ├── mysql-recognition-types.h │ ├── parsers-common.cpp │ └── parsers-common.h │ ├── antlr4 │ ├── MySQLBaseLexer.ts │ ├── MySQLBaseRecognizer.ts │ ├── MySQLErrorListener.ts │ ├── MySQLLexer.g4 │ ├── MySQLLexer.interp │ ├── MySQLLexer.tokens │ ├── MySQLLexer.ts │ ├── MySQLParser.g4 │ ├── MySQLParser.interp │ ├── MySQLParser.tokens │ ├── MySQLParser.ts │ ├── MySQLParserListener.ts │ ├── MySQLParserVisitor.ts │ ├── MySQLRecognizerCommon.ts │ ├── ParseServiceOldTS.ts │ └── run-benchmark.ts │ ├── antlr4ng │ ├── MySQLBaseLexer.ts │ ├── MySQLBaseRecognizer.ts │ ├── MySQLErrorListener.ts │ ├── MySQLLexer.g4 │ ├── MySQLLexer.interp │ ├── MySQLLexer.tokens │ ├── MySQLLexer.ts │ ├── MySQLParser.g4 │ ├── MySQLParser.interp │ ├── MySQLParser.tokens │ ├── MySQLParser.ts │ ├── MySQLParserListener.ts │ ├── MySQLParserVisitor.ts │ ├── MySQLRecognizerCommon.ts │ ├── ParseServiceNewTS.ts │ └── run-benchmark.ts │ ├── antlr4ts │ ├── MySQLBaseLexer.ts │ ├── MySQLBaseRecognizer.ts │ ├── MySQLErrorListener.ts │ ├── MySQLLexer.g4 │ ├── MySQLLexer.interp │ ├── MySQLLexer.tokens │ ├── MySQLLexer.ts │ ├── MySQLParser.g4 │ ├── MySQLParser.interp │ ├── MySQLParser.tokens │ ├── MySQLParser.ts │ ├── MySQLParserListener.ts │ ├── MySQLParserVisitor.ts │ ├── MySQLRecognizerCommon.ts │ ├── ParseService.ts │ └── run-benchmark.ts │ └── antlr4wasm │ ├── MySQLBaseLexer.ts │ ├── MySQLBaseRecognizer.ts │ ├── MySQLErrorListener.ts │ ├── MySQLLexer.g4 │ ├── MySQLLexer.interp │ ├── MySQLLexer.tokens │ ├── MySQLLexer.ts │ ├── MySQLParser.g4 │ ├── MySQLParser.interp │ ├── MySQLParser.tokens │ ├── MySQLParser.ts │ ├── MySQLParserListener.ts │ ├── MySQLParserVisitor.ts │ ├── MySQLRecognizerCommon.ts │ ├── ParseServiceWasm.ts │ └── run-benchmark.ts ├── cspell.json ├── package.json ├── readme.md ├── scripts ├── build-debug.sh ├── build-release.sh └── generate.sh ├── src └── antlr4-runtime.ts ├── tests ├── generated │ ├── TypeScript │ │ ├── Whitebox.interp │ │ ├── Whitebox.tokens │ │ ├── WhiteboxLexer.interp │ │ ├── WhiteboxLexer.tokens │ │ ├── WhiteboxLexer.ts │ │ └── WhiteboxParser.ts │ └── cpp │ │ ├── CPP14.interp │ │ ├── CPP14.tokens │ │ ├── CPP14Lexer.cpp │ │ ├── CPP14Lexer.h │ │ ├── CPP14Lexer.interp │ │ ├── CPP14Lexer.tokens │ │ ├── CPP14Parser.cpp │ │ ├── CPP14Parser.h │ │ ├── Expr.interp │ │ ├── Expr.tokens │ │ ├── ExprLexer.cpp │ │ ├── ExprLexer.h │ │ ├── ExprLexer.interp │ │ ├── ExprLexer.tokens │ │ ├── ExprParser.cpp │ │ ├── ExprParser.h │ │ ├── Whitebox.interp │ │ ├── Whitebox.tokens │ │ ├── WhiteboxLexer.cpp │ │ ├── WhiteboxLexer.h │ │ ├── WhiteboxLexer.interp │ │ ├── WhiteboxLexer.tokens │ │ ├── WhiteboxParser.cpp │ │ └── WhiteboxParser.h ├── grammars │ ├── CPP14.g4 │ ├── Expr.g4 │ └── Whitebox.g4 └── test.ts ├── tsconfig.json └── wasm ├── antlr4-runtime-wasm.d.ts ├── antlr4-runtime-wrapper.cpp ├── antlr4-runtime-wrapper.h ├── helpers.h ├── runtime-atn.h ├── runtime-dfa.h ├── runtime-internal.h ├── runtime-main.h ├── runtime-misc.h ├── runtime-support.h ├── runtime-tree-pattern.h ├── runtime-tree-xpath.h └── runtime-tree.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/.clang-format -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/.npmignore -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/License.txt -------------------------------------------------------------------------------- /antlr/antlr-4.13.1-complete.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr/antlr-4.13.1-complete.jar -------------------------------------------------------------------------------- /antlr/antlr4-4.13.1-SNAPSHOT-complete.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr/antlr4-4.13.1-SNAPSHOT-complete.jar -------------------------------------------------------------------------------- /antlr4-cpp-runtime/ANTLRErrorListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/ANTLRErrorListener.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/ANTLRErrorListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/ANTLRErrorListener.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/ANTLRErrorStrategy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/ANTLRErrorStrategy.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/ANTLRErrorStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/ANTLRErrorStrategy.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/ANTLRFileStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/ANTLRFileStream.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/ANTLRFileStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/ANTLRFileStream.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/ANTLRInputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/ANTLRInputStream.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/ANTLRInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/ANTLRInputStream.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/BailErrorStrategy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/BailErrorStrategy.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/BailErrorStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/BailErrorStrategy.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/BaseErrorListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/BaseErrorListener.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/BaseErrorListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/BaseErrorListener.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/BufferedTokenStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/BufferedTokenStream.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/BufferedTokenStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/BufferedTokenStream.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/CharStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/CharStream.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/CharStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/CharStream.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/CommonToken.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/CommonToken.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/CommonToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/CommonToken.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/CommonTokenFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/CommonTokenFactory.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/CommonTokenFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/CommonTokenFactory.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/CommonTokenStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/CommonTokenStream.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/CommonTokenStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/CommonTokenStream.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/ConsoleErrorListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/ConsoleErrorListener.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/ConsoleErrorListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/ConsoleErrorListener.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/DefaultErrorStrategy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/DefaultErrorStrategy.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/DefaultErrorStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/DefaultErrorStrategy.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/DiagnosticErrorListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/DiagnosticErrorListener.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/DiagnosticErrorListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/DiagnosticErrorListener.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/Exceptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/Exceptions.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/Exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/Exceptions.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/FailedPredicateException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/FailedPredicateException.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/FailedPredicateException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/FailedPredicateException.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/FlatHashMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/FlatHashMap.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/FlatHashSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/FlatHashSet.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/InputMismatchException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/InputMismatchException.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/InputMismatchException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/InputMismatchException.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/IntStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/IntStream.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/IntStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/IntStream.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/InterpreterRuleContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/InterpreterRuleContext.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/InterpreterRuleContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/InterpreterRuleContext.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/Lexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/Lexer.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/Lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/Lexer.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/LexerInterpreter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/LexerInterpreter.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/LexerInterpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/LexerInterpreter.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/LexerNoViableAltException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/LexerNoViableAltException.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/LexerNoViableAltException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/LexerNoViableAltException.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/ListTokenSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/ListTokenSource.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/ListTokenSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/ListTokenSource.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/NoViableAltException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/NoViableAltException.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/NoViableAltException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/NoViableAltException.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/Parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/Parser.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/Parser.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/ParserInterpreter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/ParserInterpreter.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/ParserInterpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/ParserInterpreter.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/ParserRuleContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/ParserRuleContext.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/ParserRuleContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/ParserRuleContext.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/ProxyErrorListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/ProxyErrorListener.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/ProxyErrorListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/ProxyErrorListener.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/RecognitionException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/RecognitionException.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/RecognitionException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/RecognitionException.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/Recognizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/Recognizer.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/Recognizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/Recognizer.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/RuleContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/RuleContext.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/RuleContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/RuleContext.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/RuleContextWithAltNum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/RuleContextWithAltNum.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/RuleContextWithAltNum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/RuleContextWithAltNum.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/RuntimeMetaData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/RuntimeMetaData.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/RuntimeMetaData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/RuntimeMetaData.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/Token.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/Token.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/Token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/Token.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/TokenFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/TokenFactory.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/TokenSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/TokenSource.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/TokenSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/TokenSource.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/TokenStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/TokenStream.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/TokenStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/TokenStream.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/TokenStreamRewriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/TokenStreamRewriter.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/TokenStreamRewriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/TokenStreamRewriter.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/UnbufferedCharStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/UnbufferedCharStream.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/UnbufferedCharStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/UnbufferedCharStream.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/UnbufferedTokenStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/UnbufferedTokenStream.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/UnbufferedTokenStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/UnbufferedTokenStream.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/Version.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/Vocabulary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/Vocabulary.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/Vocabulary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/Vocabulary.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/WritableToken.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/WritableToken.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/WritableToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/WritableToken.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/antlr4-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/antlr4-common.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/antlr4-runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/antlr4-runtime.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/ATN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/ATN.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/ATN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/ATN.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/ATNConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/ATNConfig.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/ATNConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/ATNConfig.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/ATNConfigSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/ATNConfigSet.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/ATNConfigSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/ATNConfigSet.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/ATNDeserializationOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/ATNDeserializationOptions.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/ATNDeserializationOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/ATNDeserializationOptions.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/ATNDeserializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/ATNDeserializer.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/ATNDeserializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/ATNDeserializer.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/ATNSimulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/ATNSimulator.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/ATNSimulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/ATNSimulator.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/ATNState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/ATNState.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/ATNState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/ATNState.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/ATNStateType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/ATNStateType.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/ATNStateType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/ATNStateType.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/ATNType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/ATNType.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/ActionTransition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/ActionTransition.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/ActionTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/ActionTransition.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/AmbiguityInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/AmbiguityInfo.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/AmbiguityInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/AmbiguityInfo.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/ArrayPredictionContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/ArrayPredictionContext.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/ArrayPredictionContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/ArrayPredictionContext.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/AtomTransition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/AtomTransition.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/AtomTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/AtomTransition.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/BasicBlockStartState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/BasicBlockStartState.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/BasicState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/BasicState.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/BlockEndState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/BlockEndState.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/BlockStartState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/BlockStartState.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/ContextSensitivityInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/ContextSensitivityInfo.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/ContextSensitivityInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/ContextSensitivityInfo.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/DecisionEventInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/DecisionEventInfo.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/DecisionEventInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/DecisionEventInfo.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/DecisionInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/DecisionInfo.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/DecisionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/DecisionInfo.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/DecisionState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/DecisionState.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/DecisionState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/DecisionState.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/EpsilonTransition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/EpsilonTransition.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/EpsilonTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/EpsilonTransition.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/ErrorInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/ErrorInfo.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/ErrorInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/ErrorInfo.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/HashUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/HashUtils.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/LL1Analyzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/LL1Analyzer.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/LL1Analyzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/LL1Analyzer.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/LexerATNConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/LexerATNConfig.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/LexerATNConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/LexerATNConfig.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/LexerATNSimulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/LexerATNSimulator.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/LexerATNSimulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/LexerATNSimulator.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/LexerAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/LexerAction.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/LexerAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/LexerAction.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/LexerActionExecutor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/LexerActionExecutor.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/LexerActionExecutor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/LexerActionExecutor.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/LexerActionType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/LexerActionType.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/LexerChannelAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/LexerChannelAction.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/LexerChannelAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/LexerChannelAction.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/LexerCustomAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/LexerCustomAction.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/LexerCustomAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/LexerCustomAction.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/LexerIndexedCustomAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/LexerIndexedCustomAction.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/LexerIndexedCustomAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/LexerIndexedCustomAction.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/LexerModeAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/LexerModeAction.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/LexerModeAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/LexerModeAction.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/LexerMoreAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/LexerMoreAction.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/LexerMoreAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/LexerMoreAction.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/LexerPopModeAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/LexerPopModeAction.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/LexerPopModeAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/LexerPopModeAction.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/LexerPushModeAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/LexerPushModeAction.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/LexerPushModeAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/LexerPushModeAction.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/LexerSkipAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/LexerSkipAction.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/LexerSkipAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/LexerSkipAction.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/LexerTypeAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/LexerTypeAction.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/LexerTypeAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/LexerTypeAction.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/LookaheadEventInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/LookaheadEventInfo.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/LookaheadEventInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/LookaheadEventInfo.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/LoopEndState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/LoopEndState.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/NotSetTransition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/NotSetTransition.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/NotSetTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/NotSetTransition.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/OrderedATNConfigSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/OrderedATNConfigSet.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/OrderedATNConfigSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/OrderedATNConfigSet.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/ParseInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/ParseInfo.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/ParseInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/ParseInfo.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/ParserATNSimulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/ParserATNSimulator.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/ParserATNSimulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/ParserATNSimulator.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/ParserATNSimulatorOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/ParserATNSimulatorOptions.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/PlusBlockStartState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/PlusBlockStartState.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/PlusLoopbackState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/PlusLoopbackState.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/PrecedencePredicateTransition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/PrecedencePredicateTransition.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/PrecedencePredicateTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/PrecedencePredicateTransition.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/PredicateEvalInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/PredicateEvalInfo.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/PredicateEvalInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/PredicateEvalInfo.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/PredicateTransition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/PredicateTransition.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/PredicateTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/PredicateTransition.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/PredictionContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/PredictionContext.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/PredictionContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/PredictionContext.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/PredictionContextCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/PredictionContextCache.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/PredictionContextCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/PredictionContextCache.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/PredictionContextMergeCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/PredictionContextMergeCache.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/PredictionContextMergeCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/PredictionContextMergeCache.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/PredictionContextMergeCacheOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/PredictionContextMergeCacheOptions.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/PredictionContextType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/PredictionContextType.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/PredictionMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/PredictionMode.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/PredictionMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/PredictionMode.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/ProfilingATNSimulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/ProfilingATNSimulator.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/ProfilingATNSimulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/ProfilingATNSimulator.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/RangeTransition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/RangeTransition.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/RangeTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/RangeTransition.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/RuleStartState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/RuleStartState.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/RuleStopState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/RuleStopState.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/RuleTransition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/RuleTransition.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/RuleTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/RuleTransition.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/SemanticContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/SemanticContext.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/SemanticContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/SemanticContext.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/SemanticContextType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/SemanticContextType.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/SerializedATNView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/SerializedATNView.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/SetTransition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/SetTransition.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/SetTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/SetTransition.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/SingletonPredictionContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/SingletonPredictionContext.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/SingletonPredictionContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/SingletonPredictionContext.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/StarBlockStartState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/StarBlockStartState.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/StarLoopEntryState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/StarLoopEntryState.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/StarLoopbackState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/StarLoopbackState.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/StarLoopbackState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/StarLoopbackState.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/TokensStartState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/TokensStartState.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/Transition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/Transition.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/Transition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/Transition.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/TransitionType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/TransitionType.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/TransitionType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/TransitionType.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/WildcardTransition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/WildcardTransition.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/atn/WildcardTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/atn/WildcardTransition.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/dfa/DFA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/dfa/DFA.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/dfa/DFA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/dfa/DFA.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/dfa/DFASerializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/dfa/DFASerializer.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/dfa/DFASerializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/dfa/DFASerializer.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/dfa/DFAState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/dfa/DFAState.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/dfa/DFAState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/dfa/DFAState.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/dfa/LexerDFASerializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/dfa/LexerDFASerializer.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/dfa/LexerDFASerializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/dfa/LexerDFASerializer.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/internal/Synchronization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/internal/Synchronization.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/internal/Synchronization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/internal/Synchronization.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/misc/InterpreterDataReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/misc/InterpreterDataReader.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/misc/InterpreterDataReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/misc/InterpreterDataReader.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/misc/Interval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/misc/Interval.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/misc/Interval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/misc/Interval.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/misc/IntervalSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/misc/IntervalSet.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/misc/IntervalSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/misc/IntervalSet.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/misc/MurmurHash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/misc/MurmurHash.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/misc/MurmurHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/misc/MurmurHash.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/misc/Predicate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/misc/Predicate.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/misc/Predicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/misc/Predicate.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/support/Any.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/support/Any.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/support/Any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/support/Any.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/support/Arrays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/support/Arrays.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/support/Arrays.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/support/Arrays.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/support/BitSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/support/BitSet.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/support/CPPUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/support/CPPUtils.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/support/CPPUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/support/CPPUtils.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/support/Casts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/support/Casts.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/support/Declarations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/support/Declarations.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/support/StringUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/support/StringUtils.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/support/StringUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/support/StringUtils.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/support/Unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/support/Unicode.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/support/Utf8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/support/Utf8.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/support/Utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/support/Utf8.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/AbstractParseTreeVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/AbstractParseTreeVisitor.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/ErrorNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/ErrorNode.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/ErrorNodeImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/ErrorNodeImpl.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/ErrorNodeImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/ErrorNodeImpl.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/IterativeParseTreeWalker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/IterativeParseTreeWalker.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/IterativeParseTreeWalker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/IterativeParseTreeWalker.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/ParseTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/ParseTree.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/ParseTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/ParseTree.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/ParseTreeListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/ParseTreeListener.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/ParseTreeListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/ParseTreeListener.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/ParseTreeProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/ParseTreeProperty.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/ParseTreeType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/ParseTreeType.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/ParseTreeVisitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/ParseTreeVisitor.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/ParseTreeVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/ParseTreeVisitor.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/ParseTreeWalker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/ParseTreeWalker.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/ParseTreeWalker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/ParseTreeWalker.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/TerminalNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/TerminalNode.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/TerminalNodeImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/TerminalNodeImpl.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/TerminalNodeImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/TerminalNodeImpl.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/Trees.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/Trees.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/Trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/Trees.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/pattern/Chunk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/pattern/Chunk.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/pattern/Chunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/pattern/Chunk.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/pattern/ParseTreeMatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/pattern/ParseTreeMatch.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/pattern/ParseTreeMatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/pattern/ParseTreeMatch.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/pattern/ParseTreePattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/pattern/ParseTreePattern.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/pattern/ParseTreePattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/pattern/ParseTreePattern.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/pattern/ParseTreePatternMatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/pattern/ParseTreePatternMatcher.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/pattern/ParseTreePatternMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/pattern/ParseTreePatternMatcher.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/pattern/RuleTagToken.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/pattern/RuleTagToken.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/pattern/RuleTagToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/pattern/RuleTagToken.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/pattern/TagChunk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/pattern/TagChunk.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/pattern/TagChunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/pattern/TagChunk.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/pattern/TextChunk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/pattern/TextChunk.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/pattern/TextChunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/pattern/TextChunk.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/pattern/TokenTagToken.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/pattern/TokenTagToken.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/pattern/TokenTagToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/pattern/TokenTagToken.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/xpath/XPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/xpath/XPath.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/xpath/XPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/xpath/XPath.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/xpath/XPathElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/xpath/XPathElement.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/xpath/XPathElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/xpath/XPathElement.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/xpath/XPathLexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/xpath/XPathLexer.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/xpath/XPathLexer.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/xpath/XPathLexer.g4 -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/xpath/XPathLexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/xpath/XPathLexer.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/xpath/XPathLexer.interp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/xpath/XPathLexer.interp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/xpath/XPathLexer.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/xpath/XPathLexer.tokens -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/xpath/XPathLexerErrorListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/xpath/XPathLexerErrorListener.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/xpath/XPathLexerErrorListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/xpath/XPathLexerErrorListener.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/xpath/XPathRuleAnywhereElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/xpath/XPathRuleAnywhereElement.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/xpath/XPathRuleAnywhereElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/xpath/XPathRuleAnywhereElement.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/xpath/XPathRuleElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/xpath/XPathRuleElement.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/xpath/XPathRuleElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/xpath/XPathRuleElement.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/xpath/XPathTokenAnywhereElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/xpath/XPathTokenAnywhereElement.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/xpath/XPathTokenAnywhereElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/xpath/XPathTokenAnywhereElement.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/xpath/XPathTokenElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/xpath/XPathTokenElement.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/xpath/XPathTokenElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/xpath/XPathTokenElement.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/xpath/XPathWildcardAnywhereElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/xpath/XPathWildcardAnywhereElement.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/xpath/XPathWildcardAnywhereElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/xpath/XPathWildcardAnywhereElement.h -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/xpath/XPathWildcardElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/xpath/XPathWildcardElement.cpp -------------------------------------------------------------------------------- /antlr4-cpp-runtime/tree/xpath/XPathWildcardElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/antlr4-cpp-runtime/tree/xpath/XPathWildcardElement.h -------------------------------------------------------------------------------- /benchmarks/mysql/data/bitrix_queries_cut.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/data/bitrix_queries_cut.sql -------------------------------------------------------------------------------- /benchmarks/mysql/data/rdbms-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/data/rdbms-info.json -------------------------------------------------------------------------------- /benchmarks/mysql/data/sakila-db/sakila-data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/data/sakila-db/sakila-data.sql -------------------------------------------------------------------------------- /benchmarks/mysql/data/sakila-db/sakila-schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/data/sakila-db/sakila-schema.sql -------------------------------------------------------------------------------- /benchmarks/mysql/data/sakila-db/single_statement.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/data/sakila-db/single_statement.sql -------------------------------------------------------------------------------- /benchmarks/mysql/data/statements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/data/statements.txt -------------------------------------------------------------------------------- /benchmarks/mysql/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/generate.sh -------------------------------------------------------------------------------- /benchmarks/mysql/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/helpers.ts -------------------------------------------------------------------------------- /benchmarks/mysql/predefined.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/predefined.tokens -------------------------------------------------------------------------------- /benchmarks/mysql/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/readme.md -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/MySQLBaseLexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/MySQLBaseLexer.cpp -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/MySQLBaseLexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/MySQLBaseLexer.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/MySQLBaseRecognizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/MySQLBaseRecognizer.cpp -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/MySQLBaseRecognizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/MySQLBaseRecognizer.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/MySQLLexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/MySQLLexer.cpp -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/MySQLLexer.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/MySQLLexer.g4 -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/MySQLLexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/MySQLLexer.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/MySQLLexer.interp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/MySQLLexer.interp -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/MySQLLexer.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/MySQLLexer.tokens -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/MySQLParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/MySQLParser.cpp -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/MySQLParser.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/MySQLParser.g4 -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/MySQLParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/MySQLParser.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/MySQLParser.interp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/MySQLParser.interp -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/MySQLParser.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/MySQLParser.tokens -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/MySQLParserBaseListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/MySQLParserBaseListener.cpp -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/MySQLParserBaseListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/MySQLParserBaseListener.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/MySQLParserBaseVisitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/MySQLParserBaseVisitor.cpp -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/MySQLParserBaseVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/MySQLParserBaseVisitor.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/MySQLParserListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/MySQLParserListener.cpp -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/MySQLParserListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/MySQLParserListener.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/MySQLParserVisitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/MySQLParserVisitor.cpp -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/MySQLParserVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/MySQLParserVisitor.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/MySQLRecognizerCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/MySQLRecognizerCommon.cpp -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/MySQLRecognizerCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/MySQLRecognizerCommon.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/ParseServiceCpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/ParseServiceCpp.cpp -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/ParseServiceCpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/ParseServiceCpp.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/ANTLRErrorListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/ANTLRErrorListener.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/ANTLRErrorStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/ANTLRErrorStrategy.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/ANTLRFileStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/ANTLRFileStream.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/ANTLRInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/ANTLRInputStream.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/BailErrorStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/BailErrorStrategy.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/BaseErrorListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/BaseErrorListener.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/BufferedTokenStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/BufferedTokenStream.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/CharStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/CharStream.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/CommonToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/CommonToken.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/CommonTokenFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/CommonTokenFactory.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/CommonTokenStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/CommonTokenStream.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/ConsoleErrorListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/ConsoleErrorListener.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/DefaultErrorStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/DefaultErrorStrategy.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/DiagnosticErrorListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/DiagnosticErrorListener.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/Exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/Exceptions.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/FailedPredicateException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/FailedPredicateException.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/FlatHashMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/FlatHashMap.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/FlatHashSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/FlatHashSet.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/InputMismatchException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/InputMismatchException.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/IntStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/IntStream.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/InterpreterRuleContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/InterpreterRuleContext.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/Lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/Lexer.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/LexerInterpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/LexerInterpreter.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/LexerNoViableAltException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/LexerNoViableAltException.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/ListTokenSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/ListTokenSource.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/NoViableAltException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/NoViableAltException.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/Parser.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/ParserInterpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/ParserInterpreter.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/ParserRuleContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/ParserRuleContext.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/ProxyErrorListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/ProxyErrorListener.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/RecognitionException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/RecognitionException.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/Recognizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/Recognizer.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/RuleContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/RuleContext.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/RuleContextWithAltNum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/RuleContextWithAltNum.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/RuntimeMetaData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/RuntimeMetaData.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/Token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/Token.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/TokenFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/TokenFactory.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/TokenSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/TokenSource.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/TokenStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/TokenStream.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/TokenStreamRewriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/TokenStreamRewriter.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/UnbufferedCharStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/UnbufferedCharStream.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/UnbufferedTokenStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/UnbufferedTokenStream.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/Version.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/Vocabulary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/Vocabulary.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/WritableToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/WritableToken.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/antlr4-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/antlr4-common.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/antlr4-runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/antlr4-runtime.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/ATN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/ATN.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/ATNConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/ATNConfig.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/ATNConfigSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/ATNConfigSet.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/ATNDeserializationOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/ATNDeserializationOptions.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/ATNDeserializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/ATNDeserializer.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/ATNSimulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/ATNSimulator.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/ATNState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/ATNState.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/ATNStateType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/ATNStateType.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/ATNType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/ATNType.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/ActionTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/ActionTransition.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/AmbiguityInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/AmbiguityInfo.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/ArrayPredictionContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/ArrayPredictionContext.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/AtomTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/AtomTransition.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/BasicBlockStartState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/BasicBlockStartState.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/BasicState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/BasicState.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/BlockEndState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/BlockEndState.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/BlockStartState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/BlockStartState.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/ContextSensitivityInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/ContextSensitivityInfo.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/DecisionEventInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/DecisionEventInfo.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/DecisionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/DecisionInfo.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/DecisionState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/DecisionState.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/EpsilonTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/EpsilonTransition.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/ErrorInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/ErrorInfo.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/HashUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/HashUtils.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/LL1Analyzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/LL1Analyzer.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/LexerATNConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/LexerATNConfig.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/LexerATNSimulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/LexerATNSimulator.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/LexerAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/LexerAction.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/LexerActionExecutor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/LexerActionExecutor.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/LexerActionType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/LexerActionType.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/LexerChannelAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/LexerChannelAction.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/LexerCustomAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/LexerCustomAction.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/LexerIndexedCustomAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/LexerIndexedCustomAction.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/LexerModeAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/LexerModeAction.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/LexerMoreAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/LexerMoreAction.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/LexerPopModeAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/LexerPopModeAction.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/LexerPushModeAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/LexerPushModeAction.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/LexerSkipAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/LexerSkipAction.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/LexerTypeAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/LexerTypeAction.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/LookaheadEventInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/LookaheadEventInfo.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/LoopEndState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/LoopEndState.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/NotSetTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/NotSetTransition.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/OrderedATNConfigSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/OrderedATNConfigSet.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/ParseInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/ParseInfo.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/ParserATNSimulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/ParserATNSimulator.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/ParserATNSimulatorOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/ParserATNSimulatorOptions.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/PlusBlockStartState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/PlusBlockStartState.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/PlusLoopbackState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/PlusLoopbackState.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/PrecedencePredicateTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/PrecedencePredicateTransition.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/PredicateEvalInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/PredicateEvalInfo.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/PredicateTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/PredicateTransition.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/PredictionContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/PredictionContext.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/PredictionContextCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/PredictionContextCache.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/PredictionContextMergeCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/PredictionContextMergeCache.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/PredictionContextMergeCacheOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/PredictionContextMergeCacheOptions.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/PredictionContextType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/PredictionContextType.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/PredictionMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/PredictionMode.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/ProfilingATNSimulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/ProfilingATNSimulator.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/RangeTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/RangeTransition.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/RuleStartState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/RuleStartState.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/RuleStopState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/RuleStopState.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/RuleTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/RuleTransition.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/SemanticContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/SemanticContext.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/SemanticContextType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/SemanticContextType.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/SerializedATNView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/SerializedATNView.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/SetTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/SetTransition.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/SingletonPredictionContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/SingletonPredictionContext.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/StarBlockStartState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/StarBlockStartState.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/StarLoopEntryState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/StarLoopEntryState.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/StarLoopbackState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/StarLoopbackState.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/TokensStartState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/TokensStartState.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/Transition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/Transition.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/TransitionType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/TransitionType.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/WildcardTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/atn/WildcardTransition.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/dfa/DFA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/dfa/DFA.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/dfa/DFASerializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/dfa/DFASerializer.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/dfa/DFAState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/dfa/DFAState.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/dfa/LexerDFASerializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/dfa/LexerDFASerializer.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/internal/Synchronization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/internal/Synchronization.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/misc/InterpreterDataReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/misc/InterpreterDataReader.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/misc/Interval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/misc/Interval.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/misc/IntervalSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/misc/IntervalSet.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/misc/MurmurHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/misc/MurmurHash.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/misc/Predicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/misc/Predicate.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/support/Any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/support/Any.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/support/Arrays.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/support/Arrays.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/support/BitSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/support/BitSet.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/support/CPPUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/support/CPPUtils.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/support/Casts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/support/Casts.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/support/Declarations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/support/Declarations.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/support/StringUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/support/StringUtils.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/support/Unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/support/Unicode.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/support/Utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/support/Utf8.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/AbstractParseTreeVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/AbstractParseTreeVisitor.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/ErrorNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/ErrorNode.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/ErrorNodeImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/ErrorNodeImpl.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/IterativeParseTreeWalker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/IterativeParseTreeWalker.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/ParseTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/ParseTree.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/ParseTreeListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/ParseTreeListener.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/ParseTreeProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/ParseTreeProperty.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/ParseTreeType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/ParseTreeType.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/ParseTreeVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/ParseTreeVisitor.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/ParseTreeWalker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/ParseTreeWalker.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/TerminalNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/TerminalNode.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/TerminalNodeImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/TerminalNodeImpl.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/Trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/Trees.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/pattern/Chunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/pattern/Chunk.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/pattern/ParseTreeMatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/pattern/ParseTreeMatch.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/pattern/ParseTreePattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/pattern/ParseTreePattern.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/pattern/ParseTreePatternMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/pattern/ParseTreePatternMatcher.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/pattern/RuleTagToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/pattern/RuleTagToken.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/pattern/TagChunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/pattern/TagChunk.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/pattern/TextChunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/pattern/TextChunk.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/pattern/TokenTagToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/pattern/TokenTagToken.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/xpath/XPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/xpath/XPath.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/xpath/XPathElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/xpath/XPathElement.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/xpath/XPathLexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/xpath/XPathLexer.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/xpath/XPathLexerErrorListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/xpath/XPathLexerErrorListener.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/xpath/XPathRuleAnywhereElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/xpath/XPathRuleAnywhereElement.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/xpath/XPathRuleElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/xpath/XPathRuleElement.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/xpath/XPathTokenAnywhereElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/xpath/XPathTokenAnywhereElement.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/xpath/XPathTokenElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/xpath/XPathTokenElement.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/xpath/XPathWildcardAnywhereElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/xpath/XPathWildcardAnywhereElement.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/xpath/XPathWildcardElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/antlr4-runtime/tree/xpath/XPathWildcardElement.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/build.sh -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/main.cpp -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/mysql-benchmark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/mysql-benchmark -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/mysql-recognition-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/mysql-recognition-types.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/parsers-common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/parsers-common.cpp -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4-cpp/parsers-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4-cpp/parsers-common.h -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4/MySQLBaseLexer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4/MySQLBaseLexer.ts -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4/MySQLBaseRecognizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4/MySQLBaseRecognizer.ts -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4/MySQLErrorListener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4/MySQLErrorListener.ts -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4/MySQLLexer.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4/MySQLLexer.g4 -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4/MySQLLexer.interp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4/MySQLLexer.interp -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4/MySQLLexer.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4/MySQLLexer.tokens -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4/MySQLLexer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4/MySQLLexer.ts -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4/MySQLParser.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4/MySQLParser.g4 -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4/MySQLParser.interp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4/MySQLParser.interp -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4/MySQLParser.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4/MySQLParser.tokens -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4/MySQLParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4/MySQLParser.ts -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4/MySQLParserListener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4/MySQLParserListener.ts -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4/MySQLParserVisitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4/MySQLParserVisitor.ts -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4/MySQLRecognizerCommon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4/MySQLRecognizerCommon.ts -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4/ParseServiceOldTS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4/ParseServiceOldTS.ts -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4/run-benchmark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4/run-benchmark.ts -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4ng/MySQLBaseLexer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4ng/MySQLBaseLexer.ts -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4ng/MySQLBaseRecognizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4ng/MySQLBaseRecognizer.ts -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4ng/MySQLErrorListener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4ng/MySQLErrorListener.ts -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4ng/MySQLLexer.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4ng/MySQLLexer.g4 -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4ng/MySQLLexer.interp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4ng/MySQLLexer.interp -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4ng/MySQLLexer.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4ng/MySQLLexer.tokens -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4ng/MySQLLexer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4ng/MySQLLexer.ts -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4ng/MySQLParser.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4ng/MySQLParser.g4 -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4ng/MySQLParser.interp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4ng/MySQLParser.interp -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4ng/MySQLParser.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4ng/MySQLParser.tokens -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4ng/MySQLParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4ng/MySQLParser.ts -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4ng/MySQLParserListener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4ng/MySQLParserListener.ts -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4ng/MySQLParserVisitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4ng/MySQLParserVisitor.ts -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4ng/MySQLRecognizerCommon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4ng/MySQLRecognizerCommon.ts -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4ng/ParseServiceNewTS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4ng/ParseServiceNewTS.ts -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4ng/run-benchmark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4ng/run-benchmark.ts -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4ts/MySQLBaseLexer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4ts/MySQLBaseLexer.ts -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4ts/MySQLBaseRecognizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4ts/MySQLBaseRecognizer.ts -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4ts/MySQLErrorListener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4ts/MySQLErrorListener.ts -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4ts/MySQLLexer.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4ts/MySQLLexer.g4 -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4ts/MySQLLexer.interp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4ts/MySQLLexer.interp -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4ts/MySQLLexer.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4ts/MySQLLexer.tokens -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4ts/MySQLLexer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4ts/MySQLLexer.ts -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4ts/MySQLParser.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4ts/MySQLParser.g4 -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4ts/MySQLParser.interp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4ts/MySQLParser.interp -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4ts/MySQLParser.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4ts/MySQLParser.tokens -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4ts/MySQLParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4ts/MySQLParser.ts -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4ts/MySQLParserListener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4ts/MySQLParserListener.ts -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4ts/MySQLParserVisitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4ts/MySQLParserVisitor.ts -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4ts/MySQLRecognizerCommon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4ts/MySQLRecognizerCommon.ts -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4ts/ParseService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4ts/ParseService.ts -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4ts/run-benchmark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4ts/run-benchmark.ts -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4wasm/MySQLBaseLexer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4wasm/MySQLBaseLexer.ts -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4wasm/MySQLBaseRecognizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4wasm/MySQLBaseRecognizer.ts -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4wasm/MySQLErrorListener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4wasm/MySQLErrorListener.ts -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4wasm/MySQLLexer.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4wasm/MySQLLexer.g4 -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4wasm/MySQLLexer.interp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4wasm/MySQLLexer.interp -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4wasm/MySQLLexer.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4wasm/MySQLLexer.tokens -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4wasm/MySQLLexer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4wasm/MySQLLexer.ts -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4wasm/MySQLParser.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4wasm/MySQLParser.g4 -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4wasm/MySQLParser.interp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4wasm/MySQLParser.interp -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4wasm/MySQLParser.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4wasm/MySQLParser.tokens -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4wasm/MySQLParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4wasm/MySQLParser.ts -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4wasm/MySQLParserListener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4wasm/MySQLParserListener.ts -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4wasm/MySQLParserVisitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4wasm/MySQLParserVisitor.ts -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4wasm/MySQLRecognizerCommon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4wasm/MySQLRecognizerCommon.ts -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4wasm/ParseServiceWasm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4wasm/ParseServiceWasm.ts -------------------------------------------------------------------------------- /benchmarks/mysql/targets/antlr4wasm/run-benchmark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/benchmarks/mysql/targets/antlr4wasm/run-benchmark.ts -------------------------------------------------------------------------------- /cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/cspell.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/readme.md -------------------------------------------------------------------------------- /scripts/build-debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/scripts/build-debug.sh -------------------------------------------------------------------------------- /scripts/build-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/scripts/build-release.sh -------------------------------------------------------------------------------- /scripts/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/scripts/generate.sh -------------------------------------------------------------------------------- /src/antlr4-runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/src/antlr4-runtime.ts -------------------------------------------------------------------------------- /tests/generated/TypeScript/Whitebox.interp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/tests/generated/TypeScript/Whitebox.interp -------------------------------------------------------------------------------- /tests/generated/TypeScript/Whitebox.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/tests/generated/TypeScript/Whitebox.tokens -------------------------------------------------------------------------------- /tests/generated/TypeScript/WhiteboxLexer.interp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/tests/generated/TypeScript/WhiteboxLexer.interp -------------------------------------------------------------------------------- /tests/generated/TypeScript/WhiteboxLexer.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/tests/generated/TypeScript/WhiteboxLexer.tokens -------------------------------------------------------------------------------- /tests/generated/TypeScript/WhiteboxLexer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/tests/generated/TypeScript/WhiteboxLexer.ts -------------------------------------------------------------------------------- /tests/generated/TypeScript/WhiteboxParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/tests/generated/TypeScript/WhiteboxParser.ts -------------------------------------------------------------------------------- /tests/generated/cpp/CPP14.interp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/tests/generated/cpp/CPP14.interp -------------------------------------------------------------------------------- /tests/generated/cpp/CPP14.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/tests/generated/cpp/CPP14.tokens -------------------------------------------------------------------------------- /tests/generated/cpp/CPP14Lexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/tests/generated/cpp/CPP14Lexer.cpp -------------------------------------------------------------------------------- /tests/generated/cpp/CPP14Lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/tests/generated/cpp/CPP14Lexer.h -------------------------------------------------------------------------------- /tests/generated/cpp/CPP14Lexer.interp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/tests/generated/cpp/CPP14Lexer.interp -------------------------------------------------------------------------------- /tests/generated/cpp/CPP14Lexer.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/tests/generated/cpp/CPP14Lexer.tokens -------------------------------------------------------------------------------- /tests/generated/cpp/CPP14Parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/tests/generated/cpp/CPP14Parser.cpp -------------------------------------------------------------------------------- /tests/generated/cpp/CPP14Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/tests/generated/cpp/CPP14Parser.h -------------------------------------------------------------------------------- /tests/generated/cpp/Expr.interp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/tests/generated/cpp/Expr.interp -------------------------------------------------------------------------------- /tests/generated/cpp/Expr.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/tests/generated/cpp/Expr.tokens -------------------------------------------------------------------------------- /tests/generated/cpp/ExprLexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/tests/generated/cpp/ExprLexer.cpp -------------------------------------------------------------------------------- /tests/generated/cpp/ExprLexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/tests/generated/cpp/ExprLexer.h -------------------------------------------------------------------------------- /tests/generated/cpp/ExprLexer.interp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/tests/generated/cpp/ExprLexer.interp -------------------------------------------------------------------------------- /tests/generated/cpp/ExprLexer.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/tests/generated/cpp/ExprLexer.tokens -------------------------------------------------------------------------------- /tests/generated/cpp/ExprParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/tests/generated/cpp/ExprParser.cpp -------------------------------------------------------------------------------- /tests/generated/cpp/ExprParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/tests/generated/cpp/ExprParser.h -------------------------------------------------------------------------------- /tests/generated/cpp/Whitebox.interp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/tests/generated/cpp/Whitebox.interp -------------------------------------------------------------------------------- /tests/generated/cpp/Whitebox.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/tests/generated/cpp/Whitebox.tokens -------------------------------------------------------------------------------- /tests/generated/cpp/WhiteboxLexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/tests/generated/cpp/WhiteboxLexer.cpp -------------------------------------------------------------------------------- /tests/generated/cpp/WhiteboxLexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/tests/generated/cpp/WhiteboxLexer.h -------------------------------------------------------------------------------- /tests/generated/cpp/WhiteboxLexer.interp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/tests/generated/cpp/WhiteboxLexer.interp -------------------------------------------------------------------------------- /tests/generated/cpp/WhiteboxLexer.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/tests/generated/cpp/WhiteboxLexer.tokens -------------------------------------------------------------------------------- /tests/generated/cpp/WhiteboxParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/tests/generated/cpp/WhiteboxParser.cpp -------------------------------------------------------------------------------- /tests/generated/cpp/WhiteboxParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/tests/generated/cpp/WhiteboxParser.h -------------------------------------------------------------------------------- /tests/grammars/CPP14.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/tests/grammars/CPP14.g4 -------------------------------------------------------------------------------- /tests/grammars/Expr.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/tests/grammars/Expr.g4 -------------------------------------------------------------------------------- /tests/grammars/Whitebox.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/tests/grammars/Whitebox.g4 -------------------------------------------------------------------------------- /tests/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/tests/test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/tsconfig.json -------------------------------------------------------------------------------- /wasm/antlr4-runtime-wasm.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/wasm/antlr4-runtime-wasm.d.ts -------------------------------------------------------------------------------- /wasm/antlr4-runtime-wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/wasm/antlr4-runtime-wrapper.cpp -------------------------------------------------------------------------------- /wasm/antlr4-runtime-wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/wasm/antlr4-runtime-wrapper.h -------------------------------------------------------------------------------- /wasm/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/wasm/helpers.h -------------------------------------------------------------------------------- /wasm/runtime-atn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/wasm/runtime-atn.h -------------------------------------------------------------------------------- /wasm/runtime-dfa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/wasm/runtime-dfa.h -------------------------------------------------------------------------------- /wasm/runtime-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/wasm/runtime-internal.h -------------------------------------------------------------------------------- /wasm/runtime-main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/wasm/runtime-main.h -------------------------------------------------------------------------------- /wasm/runtime-misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/wasm/runtime-misc.h -------------------------------------------------------------------------------- /wasm/runtime-support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/wasm/runtime-support.h -------------------------------------------------------------------------------- /wasm/runtime-tree-pattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/wasm/runtime-tree-pattern.h -------------------------------------------------------------------------------- /wasm/runtime-tree-xpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/wasm/runtime-tree-xpath.h -------------------------------------------------------------------------------- /wasm/runtime-tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike-lischke/antlr4wasm/HEAD/wasm/runtime-tree.h --------------------------------------------------------------------------------