├── .coveragerc ├── .github └── workflows │ ├── benchmarks-closed.yml │ ├── benchmarks-main.yml │ ├── benchmarks-prs-upload.yml │ ├── benchmarks-prs.yml │ ├── build-and-publish.yml │ ├── code-checks.yml │ ├── deploy-book.yml │ ├── python-coverage.yml │ ├── python-tests.yml │ └── setup-fandango │ └── action.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .vscode ├── extensions │ └── fandango-language-server │ │ ├── .eslintrc.yml │ │ ├── .gitignore │ │ ├── .vscodeignore │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ └── extension.ts │ │ └── tsconfig.json ├── launch.json ├── settings.json └── tasks.json ├── Dockerfile ├── LICENSE.md ├── Makefile ├── README.md ├── SECURITY.md ├── demo ├── 01-miller.fan ├── 02-expressions.fan ├── 03-transactions.fan ├── 04-coverage.fan ├── cheat-sheet.md └── demo.ipynb ├── docs ├── .gitignore ├── About.md ├── Binary.md ├── Bits.md ├── BookIntro.md ├── Calculator.fan ├── Commands.md ├── Constraints.md ├── Contributing.md ├── Conversion.md ├── Converters.md ├── DerivationTree.md ├── Distributions.md ├── FAQ.md ├── FirstSpec.md ├── Footer.md ├── Fuzzing.md ├── Generators.md ├── Gif.md ├── Hatching.md ├── ISO8601.md ├── Icon-reverse.png ├── Including.md ├── Installing.md ├── Intro.md ├── Invoking.md ├── Language.md ├── LanguageServer.md ├── Makefile ├── Outputs.md ├── Parsing.md ├── Paths.md ├── Protocols.md ├── PythonAPI.md ├── README.txt ├── Recursive.md ├── Reference.md ├── Regexes.md ├── ReleaseNotes.md ├── Setup.md ├── Shell.md ├── Stdlib.md ├── Strategies.md ├── Title.pages ├── Title.pdf ├── Tree.py ├── Tutorial.md ├── Whitebox.md ├── _config.yml ├── _static │ └── fandango.pdf ├── _toc.yml ├── additions.fan ├── bc.fan ├── binary-pack.fan ├── binary-rep.fan ├── binary.fan ├── binfinity.fan ├── bits.fan ├── cat-oracle.fan ├── cat.fan ├── coverage-demo.fan ├── coverage.py ├── credit_card-gen.fan ├── credit_card.fan ├── demo.fan ├── digits.fan ├── encode-decode.fan ├── encode.fan ├── expr-float.fan ├── expr.fan ├── fan_lexer.py ├── fandango.bib ├── fandango.fan ├── fandango.png ├── finity.fan ├── fuzz-persons.fan ├── gif.bt ├── gif.fan ├── gif89a.fan ├── infinity.fan ├── iso8601.fan ├── iso8601.py ├── logo_cispa.png ├── logo_erc.png ├── lsp4ij-fandangospec.zip ├── onebit.fan ├── patch-html.sh ├── person.txt ├── persons-faker-age.fan ├── persons-faker-gauss.fan ├── persons-faker.fan ├── persons-faker50.fan ├── persons-nat.fan ├── persons-neg.fan ├── persons.fan ├── persons100.fan ├── persons50.fan ├── progress-bar.png ├── rstring.fan ├── smtp-extended.fan ├── smtp-simple.fan ├── smtp-telnet.fan ├── smtp.fan ├── tinytrans.fan ├── tinytrans.gif └── underscore.fan ├── evaluation ├── __init__.py ├── csv │ ├── __init__.py │ ├── csv.fan │ ├── csv_evaluation.py │ └── csv_isla_results.txt ├── rest │ ├── __init__.py │ ├── rest.fan │ ├── rest_evaluation.py │ └── rest_isla_results.txt ├── run_evaluation.py ├── scriptsizec │ ├── __init__.py │ ├── scriptsizec.fan │ ├── scriptsizec_evaluation.py │ └── scriptsizec_isla_results.txt ├── tar │ ├── __init__.py │ ├── tar.fan │ ├── tar_evaluation.py │ └── tar_isla_results.txt └── xml │ ├── __init__.py │ ├── xml.fan │ ├── xml_evaluation.py │ └── xml_isla_results.txt ├── language ├── FandangoLexer.g4 ├── FandangoParser.g4 └── tokens.py ├── pyproject.toml ├── scripts ├── cprofile_profile.py └── simple_benchmark.py ├── setup.py ├── src └── fandango │ ├── __init__.py │ ├── _version.py │ ├── api.py │ ├── beartype.py │ ├── cli │ ├── __init__.py │ ├── commands.py │ ├── complete.py │ ├── output.py │ ├── parser.py │ ├── progress.py │ ├── shell.py │ └── utils.py │ ├── constraints │ ├── __init__.py │ ├── base.py │ ├── comparison.py │ ├── conjunction.py │ ├── constraint.py │ ├── constraint_visitor.py │ ├── disjunct.py │ ├── exists.py │ ├── expression.py │ ├── failing_tree.py │ ├── fitness.py │ ├── forall.py │ ├── implication.py │ ├── predicates.py │ ├── repetition_bounds.py │ └── soft.py │ ├── converters │ ├── FandangoConverter.py │ ├── antlr │ │ ├── ANTLRFandangoConverter.py │ │ ├── ANTLRv4Lexer.g4 │ │ ├── ANTLRv4Lexer.interp │ │ ├── ANTLRv4Lexer.py │ │ ├── ANTLRv4Lexer.tokens │ │ ├── ANTLRv4LexerOrig.g4 │ │ ├── ANTLRv4Parser.g4 │ │ ├── ANTLRv4Parser.interp │ │ ├── ANTLRv4Parser.py │ │ ├── ANTLRv4Parser.tokens │ │ ├── ANTLRv4ParserVisitor.py │ │ ├── Calculator.g4 │ │ ├── LexerAdaptor.py │ │ ├── Makefile │ │ ├── mypy.ini │ │ └── predefined.tokens │ ├── bt │ │ ├── BTFandangoConverter.py │ │ └── gif.bt │ ├── dtd │ │ ├── DTDFandangoConverter.py │ │ ├── Smiley.svg │ │ ├── Smiley.svg.txt │ │ ├── svg.fan │ │ ├── svg11-flat-20110816.dtd │ │ ├── svg11.fan │ │ └── svgextreme.fan │ └── fan │ │ └── FandangoFandangoConverter.py │ ├── errors.py │ ├── evolution │ ├── __init__.py │ ├── adaptation.py │ ├── algorithm.py │ ├── crossover.py │ ├── evaluation.py │ ├── havoc.py │ ├── mutation.py │ ├── population.py │ └── profiler.py │ ├── io │ ├── __init__.py │ ├── packetforecaster.py │ └── packetparser.py │ ├── language │ ├── __init__.py │ ├── convert.py │ ├── cpp_parser │ │ ├── FandangoLexer.cpp │ │ ├── FandangoLexer.h │ │ ├── FandangoLexer.interp │ │ ├── FandangoLexer.tokens │ │ ├── FandangoLexerBase.cpp │ │ ├── FandangoLexerBase.h │ │ ├── FandangoParser.cpp │ │ ├── FandangoParser.h │ │ ├── FandangoParser.interp │ │ ├── FandangoParser.tokens │ │ ├── FandangoParserBaseVisitor.cpp │ │ ├── FandangoParserBaseVisitor.h │ │ ├── FandangoParserVisitor.cpp │ │ ├── FandangoParserVisitor.h │ │ ├── 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.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 │ │ ├── sa_fandango_cpp_parser.cpp │ │ ├── sa_fandango_translator.cpp │ │ ├── sa_fandango_translator.h │ │ ├── speedy_antlr.cpp │ │ └── speedy_antlr.h │ ├── generate-parser.py │ ├── grammar │ │ ├── __init__.py │ │ ├── grammar.py │ │ ├── grammar_settings.py │ │ ├── has_settings.py │ │ ├── literal_generator.py │ │ ├── node_visitors │ │ │ ├── disambiguator.py │ │ │ ├── message_nesting_detector.py │ │ │ ├── node_replacer.py │ │ │ ├── node_visitor.py │ │ │ ├── packet_truncator.py │ │ │ └── symbol_finder.py │ │ ├── nodes │ │ │ ├── __init__.py │ │ │ ├── alternative.py │ │ │ ├── char_set.py │ │ │ ├── concatenation.py │ │ │ ├── node.py │ │ │ ├── non_terminal.py │ │ │ ├── repetition.py │ │ │ └── terminal.py │ │ └── parser │ │ │ ├── column.py │ │ │ ├── iterative_parser.py │ │ │ ├── parse_state.py │ │ │ ├── parser.py │ │ │ └── parser_tree.py │ ├── parse.py │ ├── parser │ │ ├── FandangoLexer.interp │ │ ├── FandangoLexer.py │ │ ├── FandangoLexer.tokens │ │ ├── FandangoLexerBase.py │ │ ├── FandangoParser.interp │ │ ├── FandangoParser.py │ │ ├── FandangoParser.tokens │ │ ├── FandangoParserVisitor.py │ │ ├── __init__.py │ │ ├── mypy.ini │ │ └── sa_fandango.py │ ├── search.py │ ├── server │ │ ├── __init__.py │ │ ├── language_server.py │ │ └── semantic_tokens.py │ ├── stdlib.py │ ├── symbols │ │ ├── __init__.py │ │ ├── non_terminal.py │ │ ├── slice.py │ │ ├── symbol.py │ │ └── terminal.py │ ├── tree.py │ └── tree_value.py │ ├── logger.py │ └── meta.py └── tests ├── __init__.py ├── conftest.py ├── resources ├── .gitignore ├── a.txt ├── abc.txt ├── abcabc.txt ├── abcd.txt ├── b.txt ├── backslash.fan ├── bar.fan ├── bit_special.fan ├── bitstream-a.fan ├── bitstream.fan ├── byte_alternative.fan ├── children.fan ├── complex_constraints.fan ├── constraints.fan ├── csv.fan ├── determinism.fan ├── digit.fan ├── digit_targeted_mutation.fan ├── dynamic_repetition.fan ├── dynamic_repetition_2.fan ├── empty.fan ├── eval.fan ├── even_numbers.fan ├── example_number.fan ├── fandango.fan ├── forecaster.fan ├── gen_number.fan ├── generator_remove.fan ├── grammar.fan ├── grammar_primary.fan ├── hash.fan ├── import.fan ├── imported.py ├── incomplete.fan ├── indent.fan ├── indirect_children.fan ├── int.fan ├── iso8601.txt ├── long_string.fan ├── min_reps.fan ├── minimal_io.fan ├── nested_grammar_parameters.fan ├── persons.fan ├── persons_with_constr.fan ├── repetitions.fan ├── rgb.fan ├── rgb.txt ├── simple.fan ├── simple_softvalue.fan ├── slicing.fan ├── softvalue.fan ├── test_libfuzzer_interface.c └── twodigits.fan ├── test_api.py ├── test_benchmarks.py ├── test_cli.py ├── test_constraints.py ├── test_convert.py ├── test_evaluate_individual.py ├── test_evaluation.py ├── test_fan_parsers.py ├── test_forecaster.py ├── test_fstrings.py ├── test_grammar.py ├── test_grammar_settings.py ├── test_havoc.py ├── test_language.py ├── test_meta.py ├── test_msg_exchange.py ├── test_optimizer.py ├── test_parsing.py ├── test_searches.py ├── test_slices.py ├── test_softconstraint.py ├── test_star.py ├── test_structural_out_of_grammar_mutation.py ├── test_tree_value.py ├── test_visitor.py └── utils.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/benchmarks-closed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/.github/workflows/benchmarks-closed.yml -------------------------------------------------------------------------------- /.github/workflows/benchmarks-main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/.github/workflows/benchmarks-main.yml -------------------------------------------------------------------------------- /.github/workflows/benchmarks-prs-upload.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/.github/workflows/benchmarks-prs-upload.yml -------------------------------------------------------------------------------- /.github/workflows/benchmarks-prs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/.github/workflows/benchmarks-prs.yml -------------------------------------------------------------------------------- /.github/workflows/build-and-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/.github/workflows/build-and-publish.yml -------------------------------------------------------------------------------- /.github/workflows/code-checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/.github/workflows/code-checks.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-book.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/.github/workflows/deploy-book.yml -------------------------------------------------------------------------------- /.github/workflows/python-coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/.github/workflows/python-coverage.yml -------------------------------------------------------------------------------- /.github/workflows/python-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/.github/workflows/python-tests.yml -------------------------------------------------------------------------------- /.github/workflows/setup-fandango/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/.github/workflows/setup-fandango/action.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.vscode/extensions/fandango-language-server/.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/.vscode/extensions/fandango-language-server/.eslintrc.yml -------------------------------------------------------------------------------- /.vscode/extensions/fandango-language-server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/.vscode/extensions/fandango-language-server/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions/fandango-language-server/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/.vscode/extensions/fandango-language-server/.vscodeignore -------------------------------------------------------------------------------- /.vscode/extensions/fandango-language-server/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/.vscode/extensions/fandango-language-server/LICENSE.txt -------------------------------------------------------------------------------- /.vscode/extensions/fandango-language-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/.vscode/extensions/fandango-language-server/README.md -------------------------------------------------------------------------------- /.vscode/extensions/fandango-language-server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/.vscode/extensions/fandango-language-server/package-lock.json -------------------------------------------------------------------------------- /.vscode/extensions/fandango-language-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/.vscode/extensions/fandango-language-server/package.json -------------------------------------------------------------------------------- /.vscode/extensions/fandango-language-server/src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/.vscode/extensions/fandango-language-server/src/extension.ts -------------------------------------------------------------------------------- /.vscode/extensions/fandango-language-server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/.vscode/extensions/fandango-language-server/tsconfig.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/SECURITY.md -------------------------------------------------------------------------------- /demo/01-miller.fan: -------------------------------------------------------------------------------- 1 | ::= {20} 2 | -------------------------------------------------------------------------------- /demo/02-expressions.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/demo/02-expressions.fan -------------------------------------------------------------------------------- /demo/03-transactions.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/demo/03-transactions.fan -------------------------------------------------------------------------------- /demo/04-coverage.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/demo/04-coverage.fan -------------------------------------------------------------------------------- /demo/cheat-sheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/demo/cheat-sheet.md -------------------------------------------------------------------------------- /demo/demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/demo/demo.ipynb -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/About.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/About.md -------------------------------------------------------------------------------- /docs/Binary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/Binary.md -------------------------------------------------------------------------------- /docs/Bits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/Bits.md -------------------------------------------------------------------------------- /docs/BookIntro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/BookIntro.md -------------------------------------------------------------------------------- /docs/Calculator.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/Calculator.fan -------------------------------------------------------------------------------- /docs/Commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/Commands.md -------------------------------------------------------------------------------- /docs/Constraints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/Constraints.md -------------------------------------------------------------------------------- /docs/Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/Contributing.md -------------------------------------------------------------------------------- /docs/Conversion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/Conversion.md -------------------------------------------------------------------------------- /docs/Converters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/Converters.md -------------------------------------------------------------------------------- /docs/DerivationTree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/DerivationTree.md -------------------------------------------------------------------------------- /docs/Distributions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/Distributions.md -------------------------------------------------------------------------------- /docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/FAQ.md -------------------------------------------------------------------------------- /docs/FirstSpec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/FirstSpec.md -------------------------------------------------------------------------------- /docs/Footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/Footer.md -------------------------------------------------------------------------------- /docs/Fuzzing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/Fuzzing.md -------------------------------------------------------------------------------- /docs/Generators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/Generators.md -------------------------------------------------------------------------------- /docs/Gif.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/Gif.md -------------------------------------------------------------------------------- /docs/Hatching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/Hatching.md -------------------------------------------------------------------------------- /docs/ISO8601.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/ISO8601.md -------------------------------------------------------------------------------- /docs/Icon-reverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/Icon-reverse.png -------------------------------------------------------------------------------- /docs/Including.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/Including.md -------------------------------------------------------------------------------- /docs/Installing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/Installing.md -------------------------------------------------------------------------------- /docs/Intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/Intro.md -------------------------------------------------------------------------------- /docs/Invoking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/Invoking.md -------------------------------------------------------------------------------- /docs/Language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/Language.md -------------------------------------------------------------------------------- /docs/LanguageServer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/LanguageServer.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/Outputs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/Outputs.md -------------------------------------------------------------------------------- /docs/Parsing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/Parsing.md -------------------------------------------------------------------------------- /docs/Paths.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/Paths.md -------------------------------------------------------------------------------- /docs/Protocols.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/Protocols.md -------------------------------------------------------------------------------- /docs/PythonAPI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/PythonAPI.md -------------------------------------------------------------------------------- /docs/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/README.txt -------------------------------------------------------------------------------- /docs/Recursive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/Recursive.md -------------------------------------------------------------------------------- /docs/Reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/Reference.md -------------------------------------------------------------------------------- /docs/Regexes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/Regexes.md -------------------------------------------------------------------------------- /docs/ReleaseNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/ReleaseNotes.md -------------------------------------------------------------------------------- /docs/Setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/Setup.md -------------------------------------------------------------------------------- /docs/Shell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/Shell.md -------------------------------------------------------------------------------- /docs/Stdlib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/Stdlib.md -------------------------------------------------------------------------------- /docs/Strategies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/Strategies.md -------------------------------------------------------------------------------- /docs/Title.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/Title.pages -------------------------------------------------------------------------------- /docs/Title.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/Title.pdf -------------------------------------------------------------------------------- /docs/Tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/Tree.py -------------------------------------------------------------------------------- /docs/Tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/Tutorial.md -------------------------------------------------------------------------------- /docs/Whitebox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/Whitebox.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_static/fandango.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/_static/fandango.pdf -------------------------------------------------------------------------------- /docs/_toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/_toc.yml -------------------------------------------------------------------------------- /docs/additions.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/additions.fan -------------------------------------------------------------------------------- /docs/bc.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/bc.fan -------------------------------------------------------------------------------- /docs/binary-pack.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/binary-pack.fan -------------------------------------------------------------------------------- /docs/binary-rep.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/binary-rep.fan -------------------------------------------------------------------------------- /docs/binary.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/binary.fan -------------------------------------------------------------------------------- /docs/binfinity.fan: -------------------------------------------------------------------------------- 1 | ::= rb"[^\x80-\xff]{5}" -------------------------------------------------------------------------------- /docs/bits.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/bits.fan -------------------------------------------------------------------------------- /docs/cat-oracle.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/cat-oracle.fan -------------------------------------------------------------------------------- /docs/cat.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/cat.fan -------------------------------------------------------------------------------- /docs/coverage-demo.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/coverage-demo.fan -------------------------------------------------------------------------------- /docs/coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/coverage.py -------------------------------------------------------------------------------- /docs/credit_card-gen.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/credit_card-gen.fan -------------------------------------------------------------------------------- /docs/credit_card.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/credit_card.fan -------------------------------------------------------------------------------- /docs/demo.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/demo.fan -------------------------------------------------------------------------------- /docs/digits.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/digits.fan -------------------------------------------------------------------------------- /docs/encode-decode.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/encode-decode.fan -------------------------------------------------------------------------------- /docs/encode.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/encode.fan -------------------------------------------------------------------------------- /docs/expr-float.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/expr-float.fan -------------------------------------------------------------------------------- /docs/expr.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/expr.fan -------------------------------------------------------------------------------- /docs/fan_lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/fan_lexer.py -------------------------------------------------------------------------------- /docs/fandango.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/fandango.bib -------------------------------------------------------------------------------- /docs/fandango.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/fandango.fan -------------------------------------------------------------------------------- /docs/fandango.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/fandango.png -------------------------------------------------------------------------------- /docs/finity.fan: -------------------------------------------------------------------------------- 1 | ::= r"(abc){1,5}" -------------------------------------------------------------------------------- /docs/fuzz-persons.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/fuzz-persons.fan -------------------------------------------------------------------------------- /docs/gif.bt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/gif.bt -------------------------------------------------------------------------------- /docs/gif.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/gif.fan -------------------------------------------------------------------------------- /docs/gif89a.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/gif89a.fan -------------------------------------------------------------------------------- /docs/infinity.fan: -------------------------------------------------------------------------------- 1 | ::= r"(abc)+" -------------------------------------------------------------------------------- /docs/iso8601.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/iso8601.fan -------------------------------------------------------------------------------- /docs/iso8601.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/iso8601.py -------------------------------------------------------------------------------- /docs/logo_cispa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/logo_cispa.png -------------------------------------------------------------------------------- /docs/logo_erc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/logo_erc.png -------------------------------------------------------------------------------- /docs/lsp4ij-fandangospec.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/lsp4ij-fandangospec.zip -------------------------------------------------------------------------------- /docs/onebit.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/onebit.fan -------------------------------------------------------------------------------- /docs/patch-html.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/patch-html.sh -------------------------------------------------------------------------------- /docs/person.txt: -------------------------------------------------------------------------------- 1 | Azw Kv,5512 -------------------------------------------------------------------------------- /docs/persons-faker-age.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/persons-faker-age.fan -------------------------------------------------------------------------------- /docs/persons-faker-gauss.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/persons-faker-gauss.fan -------------------------------------------------------------------------------- /docs/persons-faker.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/persons-faker.fan -------------------------------------------------------------------------------- /docs/persons-faker50.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/persons-faker50.fan -------------------------------------------------------------------------------- /docs/persons-nat.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/persons-nat.fan -------------------------------------------------------------------------------- /docs/persons-neg.fan: -------------------------------------------------------------------------------- 1 | include('persons.fan') 2 | 3 | ::= "-"? + -------------------------------------------------------------------------------- /docs/persons.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/persons.fan -------------------------------------------------------------------------------- /docs/persons100.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/persons100.fan -------------------------------------------------------------------------------- /docs/persons50.fan: -------------------------------------------------------------------------------- 1 | include('persons.fan') 2 | where int() < 50 -------------------------------------------------------------------------------- /docs/progress-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/progress-bar.png -------------------------------------------------------------------------------- /docs/rstring.fan: -------------------------------------------------------------------------------- 1 | ::= r"(abc|def)+" "\n" 2 | -------------------------------------------------------------------------------- /docs/smtp-extended.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/smtp-extended.fan -------------------------------------------------------------------------------- /docs/smtp-simple.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/smtp-simple.fan -------------------------------------------------------------------------------- /docs/smtp-telnet.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/smtp-telnet.fan -------------------------------------------------------------------------------- /docs/smtp.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/smtp.fan -------------------------------------------------------------------------------- /docs/tinytrans.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/tinytrans.fan -------------------------------------------------------------------------------- /docs/tinytrans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/docs/tinytrans.gif -------------------------------------------------------------------------------- /docs/underscore.fan: -------------------------------------------------------------------------------- 1 | a = 1 2 | 3 | ::= "a" -------------------------------------------------------------------------------- /evaluation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /evaluation/csv/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /evaluation/csv/csv.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/evaluation/csv/csv.fan -------------------------------------------------------------------------------- /evaluation/csv/csv_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/evaluation/csv/csv_evaluation.py -------------------------------------------------------------------------------- /evaluation/csv/csv_isla_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/evaluation/csv/csv_isla_results.txt -------------------------------------------------------------------------------- /evaluation/rest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /evaluation/rest/rest.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/evaluation/rest/rest.fan -------------------------------------------------------------------------------- /evaluation/rest/rest_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/evaluation/rest/rest_evaluation.py -------------------------------------------------------------------------------- /evaluation/rest/rest_isla_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/evaluation/rest/rest_isla_results.txt -------------------------------------------------------------------------------- /evaluation/run_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/evaluation/run_evaluation.py -------------------------------------------------------------------------------- /evaluation/scriptsizec/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /evaluation/scriptsizec/scriptsizec.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/evaluation/scriptsizec/scriptsizec.fan -------------------------------------------------------------------------------- /evaluation/scriptsizec/scriptsizec_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/evaluation/scriptsizec/scriptsizec_evaluation.py -------------------------------------------------------------------------------- /evaluation/scriptsizec/scriptsizec_isla_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/evaluation/scriptsizec/scriptsizec_isla_results.txt -------------------------------------------------------------------------------- /evaluation/tar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /evaluation/tar/tar.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/evaluation/tar/tar.fan -------------------------------------------------------------------------------- /evaluation/tar/tar_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/evaluation/tar/tar_evaluation.py -------------------------------------------------------------------------------- /evaluation/tar/tar_isla_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/evaluation/tar/tar_isla_results.txt -------------------------------------------------------------------------------- /evaluation/xml/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /evaluation/xml/xml.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/evaluation/xml/xml.fan -------------------------------------------------------------------------------- /evaluation/xml/xml_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/evaluation/xml/xml_evaluation.py -------------------------------------------------------------------------------- /evaluation/xml/xml_isla_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/evaluation/xml/xml_isla_results.txt -------------------------------------------------------------------------------- /language/FandangoLexer.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/language/FandangoLexer.g4 -------------------------------------------------------------------------------- /language/FandangoParser.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/language/FandangoParser.g4 -------------------------------------------------------------------------------- /language/tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/language/tokens.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/cprofile_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/scripts/cprofile_profile.py -------------------------------------------------------------------------------- /scripts/simple_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/scripts/simple_benchmark.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/setup.py -------------------------------------------------------------------------------- /src/fandango/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/__init__.py -------------------------------------------------------------------------------- /src/fandango/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/_version.py -------------------------------------------------------------------------------- /src/fandango/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/api.py -------------------------------------------------------------------------------- /src/fandango/beartype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/beartype.py -------------------------------------------------------------------------------- /src/fandango/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/cli/__init__.py -------------------------------------------------------------------------------- /src/fandango/cli/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/cli/commands.py -------------------------------------------------------------------------------- /src/fandango/cli/complete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/cli/complete.py -------------------------------------------------------------------------------- /src/fandango/cli/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/cli/output.py -------------------------------------------------------------------------------- /src/fandango/cli/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/cli/parser.py -------------------------------------------------------------------------------- /src/fandango/cli/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/cli/progress.py -------------------------------------------------------------------------------- /src/fandango/cli/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/cli/shell.py -------------------------------------------------------------------------------- /src/fandango/cli/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/cli/utils.py -------------------------------------------------------------------------------- /src/fandango/constraints/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/constraints/__init__.py -------------------------------------------------------------------------------- /src/fandango/constraints/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/constraints/base.py -------------------------------------------------------------------------------- /src/fandango/constraints/comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/constraints/comparison.py -------------------------------------------------------------------------------- /src/fandango/constraints/conjunction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/constraints/conjunction.py -------------------------------------------------------------------------------- /src/fandango/constraints/constraint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/constraints/constraint.py -------------------------------------------------------------------------------- /src/fandango/constraints/constraint_visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/constraints/constraint_visitor.py -------------------------------------------------------------------------------- /src/fandango/constraints/disjunct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/constraints/disjunct.py -------------------------------------------------------------------------------- /src/fandango/constraints/exists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/constraints/exists.py -------------------------------------------------------------------------------- /src/fandango/constraints/expression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/constraints/expression.py -------------------------------------------------------------------------------- /src/fandango/constraints/failing_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/constraints/failing_tree.py -------------------------------------------------------------------------------- /src/fandango/constraints/fitness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/constraints/fitness.py -------------------------------------------------------------------------------- /src/fandango/constraints/forall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/constraints/forall.py -------------------------------------------------------------------------------- /src/fandango/constraints/implication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/constraints/implication.py -------------------------------------------------------------------------------- /src/fandango/constraints/predicates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/constraints/predicates.py -------------------------------------------------------------------------------- /src/fandango/constraints/repetition_bounds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/constraints/repetition_bounds.py -------------------------------------------------------------------------------- /src/fandango/constraints/soft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/constraints/soft.py -------------------------------------------------------------------------------- /src/fandango/converters/FandangoConverter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/converters/FandangoConverter.py -------------------------------------------------------------------------------- /src/fandango/converters/antlr/ANTLRFandangoConverter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/converters/antlr/ANTLRFandangoConverter.py -------------------------------------------------------------------------------- /src/fandango/converters/antlr/ANTLRv4Lexer.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/converters/antlr/ANTLRv4Lexer.g4 -------------------------------------------------------------------------------- /src/fandango/converters/antlr/ANTLRv4Lexer.interp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/converters/antlr/ANTLRv4Lexer.interp -------------------------------------------------------------------------------- /src/fandango/converters/antlr/ANTLRv4Lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/converters/antlr/ANTLRv4Lexer.py -------------------------------------------------------------------------------- /src/fandango/converters/antlr/ANTLRv4Lexer.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/converters/antlr/ANTLRv4Lexer.tokens -------------------------------------------------------------------------------- /src/fandango/converters/antlr/ANTLRv4LexerOrig.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/converters/antlr/ANTLRv4LexerOrig.g4 -------------------------------------------------------------------------------- /src/fandango/converters/antlr/ANTLRv4Parser.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/converters/antlr/ANTLRv4Parser.g4 -------------------------------------------------------------------------------- /src/fandango/converters/antlr/ANTLRv4Parser.interp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/converters/antlr/ANTLRv4Parser.interp -------------------------------------------------------------------------------- /src/fandango/converters/antlr/ANTLRv4Parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/converters/antlr/ANTLRv4Parser.py -------------------------------------------------------------------------------- /src/fandango/converters/antlr/ANTLRv4Parser.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/converters/antlr/ANTLRv4Parser.tokens -------------------------------------------------------------------------------- /src/fandango/converters/antlr/ANTLRv4ParserVisitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/converters/antlr/ANTLRv4ParserVisitor.py -------------------------------------------------------------------------------- /src/fandango/converters/antlr/Calculator.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/converters/antlr/Calculator.g4 -------------------------------------------------------------------------------- /src/fandango/converters/antlr/LexerAdaptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/converters/antlr/LexerAdaptor.py -------------------------------------------------------------------------------- /src/fandango/converters/antlr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/converters/antlr/Makefile -------------------------------------------------------------------------------- /src/fandango/converters/antlr/mypy.ini: -------------------------------------------------------------------------------- 1 | [mypy] 2 | exclude = (^ANTLRv4(Lexer|Parser)\.py$) 3 | 4 | -------------------------------------------------------------------------------- /src/fandango/converters/antlr/predefined.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/converters/antlr/predefined.tokens -------------------------------------------------------------------------------- /src/fandango/converters/bt/BTFandangoConverter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/converters/bt/BTFandangoConverter.py -------------------------------------------------------------------------------- /src/fandango/converters/bt/gif.bt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/converters/bt/gif.bt -------------------------------------------------------------------------------- /src/fandango/converters/dtd/DTDFandangoConverter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/converters/dtd/DTDFandangoConverter.py -------------------------------------------------------------------------------- /src/fandango/converters/dtd/Smiley.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/converters/dtd/Smiley.svg -------------------------------------------------------------------------------- /src/fandango/converters/dtd/Smiley.svg.txt: -------------------------------------------------------------------------------- 1 | Smiley.svg -------------------------------------------------------------------------------- /src/fandango/converters/dtd/svg.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/converters/dtd/svg.fan -------------------------------------------------------------------------------- /src/fandango/converters/dtd/svg11-flat-20110816.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/converters/dtd/svg11-flat-20110816.dtd -------------------------------------------------------------------------------- /src/fandango/converters/dtd/svg11.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/converters/dtd/svg11.fan -------------------------------------------------------------------------------- /src/fandango/converters/dtd/svgextreme.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/converters/dtd/svgextreme.fan -------------------------------------------------------------------------------- /src/fandango/converters/fan/FandangoFandangoConverter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/converters/fan/FandangoFandangoConverter.py -------------------------------------------------------------------------------- /src/fandango/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/errors.py -------------------------------------------------------------------------------- /src/fandango/evolution/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/evolution/__init__.py -------------------------------------------------------------------------------- /src/fandango/evolution/adaptation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/evolution/adaptation.py -------------------------------------------------------------------------------- /src/fandango/evolution/algorithm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/evolution/algorithm.py -------------------------------------------------------------------------------- /src/fandango/evolution/crossover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/evolution/crossover.py -------------------------------------------------------------------------------- /src/fandango/evolution/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/evolution/evaluation.py -------------------------------------------------------------------------------- /src/fandango/evolution/havoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/evolution/havoc.py -------------------------------------------------------------------------------- /src/fandango/evolution/mutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/evolution/mutation.py -------------------------------------------------------------------------------- /src/fandango/evolution/population.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/evolution/population.py -------------------------------------------------------------------------------- /src/fandango/evolution/profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/evolution/profiler.py -------------------------------------------------------------------------------- /src/fandango/io/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/io/__init__.py -------------------------------------------------------------------------------- /src/fandango/io/packetforecaster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/io/packetforecaster.py -------------------------------------------------------------------------------- /src/fandango/io/packetparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/io/packetparser.py -------------------------------------------------------------------------------- /src/fandango/language/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/__init__.py -------------------------------------------------------------------------------- /src/fandango/language/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/convert.py -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/FandangoLexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/FandangoLexer.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/FandangoLexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/FandangoLexer.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/FandangoLexer.interp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/FandangoLexer.interp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/FandangoLexer.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/FandangoLexer.tokens -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/FandangoLexerBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/FandangoLexerBase.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/FandangoLexerBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/FandangoLexerBase.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/FandangoParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/FandangoParser.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/FandangoParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/FandangoParser.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/FandangoParser.interp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/FandangoParser.interp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/FandangoParser.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/FandangoParser.tokens -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/FandangoParserBaseVisitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/FandangoParserBaseVisitor.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/FandangoParserBaseVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/FandangoParserBaseVisitor.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/FandangoParserVisitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/FandangoParserVisitor.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/FandangoParserVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/FandangoParserVisitor.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/ANTLRErrorListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/ANTLRErrorListener.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/ANTLRErrorListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/ANTLRErrorListener.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/ANTLRErrorStrategy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/ANTLRErrorStrategy.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/ANTLRErrorStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/ANTLRErrorStrategy.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/ANTLRFileStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/ANTLRFileStream.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/ANTLRFileStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/ANTLRFileStream.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/ANTLRInputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/ANTLRInputStream.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/ANTLRInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/ANTLRInputStream.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/BailErrorStrategy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/BailErrorStrategy.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/BailErrorStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/BailErrorStrategy.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/BaseErrorListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/BaseErrorListener.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/BaseErrorListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/BaseErrorListener.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/BufferedTokenStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/BufferedTokenStream.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/BufferedTokenStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/BufferedTokenStream.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/CharStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/CharStream.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/CharStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/CharStream.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/CommonToken.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/CommonToken.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/CommonToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/CommonToken.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/CommonTokenFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/CommonTokenFactory.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/CommonTokenFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/CommonTokenFactory.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/CommonTokenStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/CommonTokenStream.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/CommonTokenStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/CommonTokenStream.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/ConsoleErrorListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/ConsoleErrorListener.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/ConsoleErrorListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/ConsoleErrorListener.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/DefaultErrorStrategy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/DefaultErrorStrategy.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/DefaultErrorStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/DefaultErrorStrategy.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/DiagnosticErrorListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/DiagnosticErrorListener.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/DiagnosticErrorListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/DiagnosticErrorListener.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/Exceptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/Exceptions.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/Exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/Exceptions.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/FailedPredicateException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/FailedPredicateException.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/FailedPredicateException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/FailedPredicateException.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/FlatHashMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/FlatHashMap.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/FlatHashSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/FlatHashSet.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/InputMismatchException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/InputMismatchException.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/InputMismatchException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/InputMismatchException.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/IntStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/IntStream.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/IntStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/IntStream.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/InterpreterRuleContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/InterpreterRuleContext.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/InterpreterRuleContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/InterpreterRuleContext.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/Lexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/Lexer.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/Lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/Lexer.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/LexerInterpreter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/LexerInterpreter.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/LexerInterpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/LexerInterpreter.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/LexerNoViableAltException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/LexerNoViableAltException.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/LexerNoViableAltException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/LexerNoViableAltException.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/ListTokenSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/ListTokenSource.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/ListTokenSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/ListTokenSource.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/NoViableAltException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/NoViableAltException.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/NoViableAltException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/NoViableAltException.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/Parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/Parser.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/Parser.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/ParserInterpreter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/ParserInterpreter.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/ParserInterpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/ParserInterpreter.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/ParserRuleContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/ParserRuleContext.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/ParserRuleContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/ParserRuleContext.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/ProxyErrorListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/ProxyErrorListener.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/ProxyErrorListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/ProxyErrorListener.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/RecognitionException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/RecognitionException.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/RecognitionException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/RecognitionException.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/Recognizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/Recognizer.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/Recognizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/Recognizer.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/RuleContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/RuleContext.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/RuleContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/RuleContext.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/RuleContextWithAltNum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/RuleContextWithAltNum.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/RuleContextWithAltNum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/RuleContextWithAltNum.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/RuntimeMetaData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/RuntimeMetaData.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/RuntimeMetaData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/RuntimeMetaData.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/Token.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/Token.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/Token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/Token.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/TokenFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/TokenFactory.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/TokenSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/TokenSource.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/TokenSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/TokenSource.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/TokenStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/TokenStream.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/TokenStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/TokenStream.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/TokenStreamRewriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/TokenStreamRewriter.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/TokenStreamRewriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/TokenStreamRewriter.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/UnbufferedCharStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/UnbufferedCharStream.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/UnbufferedCharStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/UnbufferedCharStream.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/UnbufferedTokenStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/UnbufferedTokenStream.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/UnbufferedTokenStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/UnbufferedTokenStream.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/Version.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/Vocabulary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/Vocabulary.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/Vocabulary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/Vocabulary.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/WritableToken.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/WritableToken.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/WritableToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/WritableToken.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/antlr4-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/antlr4-common.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/antlr4-runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/antlr4-runtime.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ATN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ATN.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ATN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ATN.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ATNConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ATNConfig.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ATNConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ATNConfig.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ATNConfigSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ATNConfigSet.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ATNConfigSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ATNConfigSet.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ATNDeserializationOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ATNDeserializationOptions.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ATNDeserializationOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ATNDeserializationOptions.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ATNDeserializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ATNDeserializer.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ATNDeserializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ATNDeserializer.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ATNSimulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ATNSimulator.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ATNSimulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ATNSimulator.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ATNState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ATNState.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ATNState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ATNState.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ATNStateType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ATNStateType.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ATNStateType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ATNStateType.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ATNType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ATNType.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ActionTransition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ActionTransition.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ActionTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ActionTransition.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/AmbiguityInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/AmbiguityInfo.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/AmbiguityInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/AmbiguityInfo.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ArrayPredictionContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ArrayPredictionContext.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ArrayPredictionContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ArrayPredictionContext.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/AtomTransition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/AtomTransition.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/AtomTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/AtomTransition.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/BasicBlockStartState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/BasicBlockStartState.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/BasicState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/BasicState.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/BlockEndState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/BlockEndState.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/BlockStartState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/BlockStartState.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ContextSensitivityInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ContextSensitivityInfo.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ContextSensitivityInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ContextSensitivityInfo.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/DecisionEventInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/DecisionEventInfo.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/DecisionEventInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/DecisionEventInfo.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/DecisionInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/DecisionInfo.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/DecisionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/DecisionInfo.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/DecisionState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/DecisionState.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/DecisionState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/DecisionState.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/EpsilonTransition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/EpsilonTransition.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/EpsilonTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/EpsilonTransition.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ErrorInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ErrorInfo.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ErrorInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ErrorInfo.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/HashUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/HashUtils.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LL1Analyzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LL1Analyzer.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LL1Analyzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LL1Analyzer.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerATNConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerATNConfig.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerATNConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerATNConfig.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerATNSimulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerATNSimulator.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerATNSimulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerATNSimulator.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerAction.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerAction.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerActionExecutor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerActionExecutor.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerActionExecutor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerActionExecutor.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerActionType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerActionType.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerChannelAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerChannelAction.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerChannelAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerChannelAction.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerCustomAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerCustomAction.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerCustomAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerCustomAction.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerIndexedCustomAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerIndexedCustomAction.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerIndexedCustomAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerIndexedCustomAction.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerModeAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerModeAction.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerModeAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerModeAction.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerMoreAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerMoreAction.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerMoreAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerMoreAction.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerPopModeAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerPopModeAction.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerPopModeAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerPopModeAction.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerPushModeAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerPushModeAction.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerPushModeAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerPushModeAction.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerSkipAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerSkipAction.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerSkipAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerSkipAction.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerTypeAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerTypeAction.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerTypeAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LexerTypeAction.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LookaheadEventInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LookaheadEventInfo.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LookaheadEventInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LookaheadEventInfo.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LoopEndState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/LoopEndState.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/NotSetTransition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/NotSetTransition.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/NotSetTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/NotSetTransition.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/OrderedATNConfigSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/OrderedATNConfigSet.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/OrderedATNConfigSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/OrderedATNConfigSet.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ParseInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ParseInfo.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ParseInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ParseInfo.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ParserATNSimulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ParserATNSimulator.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ParserATNSimulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ParserATNSimulator.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ParserATNSimulatorOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ParserATNSimulatorOptions.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/PlusBlockStartState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/PlusBlockStartState.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/PlusLoopbackState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/PlusLoopbackState.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/PrecedencePredicateTransition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/PrecedencePredicateTransition.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/PrecedencePredicateTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/PrecedencePredicateTransition.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/PredicateEvalInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/PredicateEvalInfo.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/PredicateEvalInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/PredicateEvalInfo.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/PredicateTransition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/PredicateTransition.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/PredicateTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/PredicateTransition.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/PredictionContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/PredictionContext.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/PredictionContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/PredictionContext.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/PredictionContextCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/PredictionContextCache.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/PredictionContextCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/PredictionContextCache.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/PredictionContextMergeCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/PredictionContextMergeCache.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/PredictionContextMergeCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/PredictionContextMergeCache.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/PredictionContextMergeCacheOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/PredictionContextMergeCacheOptions.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/PredictionContextType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/PredictionContextType.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/PredictionMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/PredictionMode.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/PredictionMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/PredictionMode.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ProfilingATNSimulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ProfilingATNSimulator.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ProfilingATNSimulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/ProfilingATNSimulator.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/RangeTransition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/RangeTransition.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/RangeTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/RangeTransition.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/RuleStartState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/RuleStartState.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/RuleStopState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/RuleStopState.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/RuleTransition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/RuleTransition.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/RuleTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/RuleTransition.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/SemanticContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/SemanticContext.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/SemanticContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/SemanticContext.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/SemanticContextType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/SemanticContextType.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/SerializedATNView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/SerializedATNView.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/SetTransition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/SetTransition.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/SetTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/SetTransition.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/SingletonPredictionContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/SingletonPredictionContext.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/SingletonPredictionContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/SingletonPredictionContext.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/StarBlockStartState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/StarBlockStartState.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/StarLoopEntryState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/StarLoopEntryState.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/StarLoopbackState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/StarLoopbackState.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/StarLoopbackState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/StarLoopbackState.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/TokensStartState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/TokensStartState.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/Transition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/Transition.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/Transition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/Transition.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/TransitionType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/TransitionType.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/TransitionType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/TransitionType.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/WildcardTransition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/WildcardTransition.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/WildcardTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/atn/WildcardTransition.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/dfa/DFA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/dfa/DFA.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/dfa/DFA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/dfa/DFA.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/dfa/DFASerializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/dfa/DFASerializer.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/dfa/DFASerializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/dfa/DFASerializer.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/dfa/DFAState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/dfa/DFAState.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/dfa/DFAState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/dfa/DFAState.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/dfa/LexerDFASerializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/dfa/LexerDFASerializer.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/dfa/LexerDFASerializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/dfa/LexerDFASerializer.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/internal/Synchronization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/internal/Synchronization.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/internal/Synchronization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/internal/Synchronization.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/misc/InterpreterDataReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/misc/InterpreterDataReader.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/misc/InterpreterDataReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/misc/InterpreterDataReader.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/misc/Interval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/misc/Interval.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/misc/Interval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/misc/Interval.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/misc/IntervalSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/misc/IntervalSet.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/misc/IntervalSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/misc/IntervalSet.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/misc/MurmurHash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/misc/MurmurHash.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/misc/MurmurHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/misc/MurmurHash.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/misc/Predicate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/misc/Predicate.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/misc/Predicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/misc/Predicate.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/support/Any.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/support/Any.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/support/Any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/support/Any.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/support/Arrays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/support/Arrays.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/support/Arrays.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/support/Arrays.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/support/BitSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/support/BitSet.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/support/CPPUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/support/CPPUtils.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/support/CPPUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/support/CPPUtils.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/support/Casts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/support/Casts.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/support/Declarations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/support/Declarations.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/support/StringUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/support/StringUtils.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/support/StringUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/support/StringUtils.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/support/Unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/support/Unicode.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/support/Utf8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/support/Utf8.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/support/Utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/support/Utf8.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/AbstractParseTreeVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/AbstractParseTreeVisitor.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/ErrorNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/ErrorNode.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/ErrorNodeImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/ErrorNodeImpl.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/ErrorNodeImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/ErrorNodeImpl.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/IterativeParseTreeWalker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/IterativeParseTreeWalker.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/IterativeParseTreeWalker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/IterativeParseTreeWalker.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/ParseTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/ParseTree.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/ParseTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/ParseTree.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/ParseTreeListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/ParseTreeListener.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/ParseTreeListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/ParseTreeListener.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/ParseTreeProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/ParseTreeProperty.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/ParseTreeType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/ParseTreeType.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/ParseTreeVisitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/ParseTreeVisitor.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/ParseTreeVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/ParseTreeVisitor.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/ParseTreeWalker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/ParseTreeWalker.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/ParseTreeWalker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/ParseTreeWalker.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/TerminalNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/TerminalNode.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/TerminalNodeImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/TerminalNodeImpl.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/TerminalNodeImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/TerminalNodeImpl.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/Trees.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/Trees.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/Trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/Trees.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/pattern/Chunk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/pattern/Chunk.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/pattern/Chunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/pattern/Chunk.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/pattern/ParseTreeMatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/pattern/ParseTreeMatch.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/pattern/ParseTreeMatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/pattern/ParseTreeMatch.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/pattern/ParseTreePattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/pattern/ParseTreePattern.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/pattern/ParseTreePattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/pattern/ParseTreePattern.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/pattern/ParseTreePatternMatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/pattern/ParseTreePatternMatcher.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/pattern/ParseTreePatternMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/pattern/ParseTreePatternMatcher.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/pattern/RuleTagToken.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/pattern/RuleTagToken.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/pattern/RuleTagToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/pattern/RuleTagToken.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/pattern/TagChunk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/pattern/TagChunk.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/pattern/TagChunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/pattern/TagChunk.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/pattern/TextChunk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/pattern/TextChunk.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/pattern/TextChunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/pattern/TextChunk.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/pattern/TokenTagToken.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/pattern/TokenTagToken.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/pattern/TokenTagToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/pattern/TokenTagToken.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/xpath/XPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/xpath/XPath.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/xpath/XPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/xpath/XPath.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/xpath/XPathElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/xpath/XPathElement.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/xpath/XPathElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/xpath/XPathElement.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/xpath/XPathLexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/xpath/XPathLexer.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/xpath/XPathLexer.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/xpath/XPathLexer.g4 -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/xpath/XPathLexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/xpath/XPathLexer.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/xpath/XPathLexer.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/xpath/XPathLexer.tokens -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/xpath/XPathLexerErrorListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/xpath/XPathLexerErrorListener.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/xpath/XPathLexerErrorListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/xpath/XPathLexerErrorListener.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/xpath/XPathRuleAnywhereElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/xpath/XPathRuleAnywhereElement.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/xpath/XPathRuleAnywhereElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/xpath/XPathRuleAnywhereElement.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/xpath/XPathRuleElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/xpath/XPathRuleElement.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/xpath/XPathRuleElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/xpath/XPathRuleElement.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/xpath/XPathTokenAnywhereElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/xpath/XPathTokenAnywhereElement.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/xpath/XPathTokenAnywhereElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/xpath/XPathTokenAnywhereElement.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/xpath/XPathTokenElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/xpath/XPathTokenElement.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/xpath/XPathTokenElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/xpath/XPathTokenElement.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/xpath/XPathWildcardAnywhereElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/xpath/XPathWildcardAnywhereElement.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/xpath/XPathWildcardAnywhereElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/xpath/XPathWildcardAnywhereElement.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/xpath/XPathWildcardElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/xpath/XPathWildcardElement.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/xpath/XPathWildcardElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/antlr4-cpp-runtime/tree/xpath/XPathWildcardElement.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/sa_fandango_cpp_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/sa_fandango_cpp_parser.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/sa_fandango_translator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/sa_fandango_translator.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/sa_fandango_translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/sa_fandango_translator.h -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/speedy_antlr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/speedy_antlr.cpp -------------------------------------------------------------------------------- /src/fandango/language/cpp_parser/speedy_antlr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/cpp_parser/speedy_antlr.h -------------------------------------------------------------------------------- /src/fandango/language/generate-parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/generate-parser.py -------------------------------------------------------------------------------- /src/fandango/language/grammar/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/grammar/__init__.py -------------------------------------------------------------------------------- /src/fandango/language/grammar/grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/grammar/grammar.py -------------------------------------------------------------------------------- /src/fandango/language/grammar/grammar_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/grammar/grammar_settings.py -------------------------------------------------------------------------------- /src/fandango/language/grammar/has_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/grammar/has_settings.py -------------------------------------------------------------------------------- /src/fandango/language/grammar/literal_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/grammar/literal_generator.py -------------------------------------------------------------------------------- /src/fandango/language/grammar/node_visitors/disambiguator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/grammar/node_visitors/disambiguator.py -------------------------------------------------------------------------------- /src/fandango/language/grammar/node_visitors/message_nesting_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/grammar/node_visitors/message_nesting_detector.py -------------------------------------------------------------------------------- /src/fandango/language/grammar/node_visitors/node_replacer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/grammar/node_visitors/node_replacer.py -------------------------------------------------------------------------------- /src/fandango/language/grammar/node_visitors/node_visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/grammar/node_visitors/node_visitor.py -------------------------------------------------------------------------------- /src/fandango/language/grammar/node_visitors/packet_truncator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/grammar/node_visitors/packet_truncator.py -------------------------------------------------------------------------------- /src/fandango/language/grammar/node_visitors/symbol_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/grammar/node_visitors/symbol_finder.py -------------------------------------------------------------------------------- /src/fandango/language/grammar/nodes/__init__.py: -------------------------------------------------------------------------------- 1 | MAX_REPETITIONS = 20 2 | -------------------------------------------------------------------------------- /src/fandango/language/grammar/nodes/alternative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/grammar/nodes/alternative.py -------------------------------------------------------------------------------- /src/fandango/language/grammar/nodes/char_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/grammar/nodes/char_set.py -------------------------------------------------------------------------------- /src/fandango/language/grammar/nodes/concatenation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/grammar/nodes/concatenation.py -------------------------------------------------------------------------------- /src/fandango/language/grammar/nodes/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/grammar/nodes/node.py -------------------------------------------------------------------------------- /src/fandango/language/grammar/nodes/non_terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/grammar/nodes/non_terminal.py -------------------------------------------------------------------------------- /src/fandango/language/grammar/nodes/repetition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/grammar/nodes/repetition.py -------------------------------------------------------------------------------- /src/fandango/language/grammar/nodes/terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/grammar/nodes/terminal.py -------------------------------------------------------------------------------- /src/fandango/language/grammar/parser/column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/grammar/parser/column.py -------------------------------------------------------------------------------- /src/fandango/language/grammar/parser/iterative_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/grammar/parser/iterative_parser.py -------------------------------------------------------------------------------- /src/fandango/language/grammar/parser/parse_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/grammar/parser/parse_state.py -------------------------------------------------------------------------------- /src/fandango/language/grammar/parser/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/grammar/parser/parser.py -------------------------------------------------------------------------------- /src/fandango/language/grammar/parser/parser_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/grammar/parser/parser_tree.py -------------------------------------------------------------------------------- /src/fandango/language/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/parse.py -------------------------------------------------------------------------------- /src/fandango/language/parser/FandangoLexer.interp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/parser/FandangoLexer.interp -------------------------------------------------------------------------------- /src/fandango/language/parser/FandangoLexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/parser/FandangoLexer.py -------------------------------------------------------------------------------- /src/fandango/language/parser/FandangoLexer.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/parser/FandangoLexer.tokens -------------------------------------------------------------------------------- /src/fandango/language/parser/FandangoLexerBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/parser/FandangoLexerBase.py -------------------------------------------------------------------------------- /src/fandango/language/parser/FandangoParser.interp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/parser/FandangoParser.interp -------------------------------------------------------------------------------- /src/fandango/language/parser/FandangoParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/parser/FandangoParser.py -------------------------------------------------------------------------------- /src/fandango/language/parser/FandangoParser.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/parser/FandangoParser.tokens -------------------------------------------------------------------------------- /src/fandango/language/parser/FandangoParserVisitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/parser/FandangoParserVisitor.py -------------------------------------------------------------------------------- /src/fandango/language/parser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/fandango/language/parser/mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/parser/mypy.ini -------------------------------------------------------------------------------- /src/fandango/language/parser/sa_fandango.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/parser/sa_fandango.py -------------------------------------------------------------------------------- /src/fandango/language/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/search.py -------------------------------------------------------------------------------- /src/fandango/language/server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/fandango/language/server/language_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/server/language_server.py -------------------------------------------------------------------------------- /src/fandango/language/server/semantic_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/server/semantic_tokens.py -------------------------------------------------------------------------------- /src/fandango/language/stdlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/stdlib.py -------------------------------------------------------------------------------- /src/fandango/language/symbols/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/symbols/__init__.py -------------------------------------------------------------------------------- /src/fandango/language/symbols/non_terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/symbols/non_terminal.py -------------------------------------------------------------------------------- /src/fandango/language/symbols/slice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/symbols/slice.py -------------------------------------------------------------------------------- /src/fandango/language/symbols/symbol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/symbols/symbol.py -------------------------------------------------------------------------------- /src/fandango/language/symbols/terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/symbols/terminal.py -------------------------------------------------------------------------------- /src/fandango/language/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/tree.py -------------------------------------------------------------------------------- /src/fandango/language/tree_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/language/tree_value.py -------------------------------------------------------------------------------- /src/fandango/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/logger.py -------------------------------------------------------------------------------- /src/fandango/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/src/fandango/meta.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/resources/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/resources/.gitignore -------------------------------------------------------------------------------- /tests/resources/a.txt: -------------------------------------------------------------------------------- 1 | a -------------------------------------------------------------------------------- /tests/resources/abc.txt: -------------------------------------------------------------------------------- 1 | abc -------------------------------------------------------------------------------- /tests/resources/abcabc.txt: -------------------------------------------------------------------------------- 1 | abcabc -------------------------------------------------------------------------------- /tests/resources/abcd.txt: -------------------------------------------------------------------------------- 1 | abcd -------------------------------------------------------------------------------- /tests/resources/b.txt: -------------------------------------------------------------------------------- 1 | b -------------------------------------------------------------------------------- /tests/resources/backslash.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/resources/backslash.fan -------------------------------------------------------------------------------- /tests/resources/bar.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/resources/bar.fan -------------------------------------------------------------------------------- /tests/resources/bit_special.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/resources/bit_special.fan -------------------------------------------------------------------------------- /tests/resources/bitstream-a.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/resources/bitstream-a.fan -------------------------------------------------------------------------------- /tests/resources/bitstream.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/resources/bitstream.fan -------------------------------------------------------------------------------- /tests/resources/byte_alternative.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/resources/byte_alternative.fan -------------------------------------------------------------------------------- /tests/resources/children.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/resources/children.fan -------------------------------------------------------------------------------- /tests/resources/complex_constraints.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/resources/complex_constraints.fan -------------------------------------------------------------------------------- /tests/resources/constraints.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/resources/constraints.fan -------------------------------------------------------------------------------- /tests/resources/csv.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/resources/csv.fan -------------------------------------------------------------------------------- /tests/resources/determinism.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/resources/determinism.fan -------------------------------------------------------------------------------- /tests/resources/digit.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/resources/digit.fan -------------------------------------------------------------------------------- /tests/resources/digit_targeted_mutation.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/resources/digit_targeted_mutation.fan -------------------------------------------------------------------------------- /tests/resources/dynamic_repetition.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/resources/dynamic_repetition.fan -------------------------------------------------------------------------------- /tests/resources/dynamic_repetition_2.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/resources/dynamic_repetition_2.fan -------------------------------------------------------------------------------- /tests/resources/empty.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/resources/empty.fan -------------------------------------------------------------------------------- /tests/resources/eval.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/resources/eval.fan -------------------------------------------------------------------------------- /tests/resources/even_numbers.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/resources/even_numbers.fan -------------------------------------------------------------------------------- /tests/resources/example_number.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/resources/example_number.fan -------------------------------------------------------------------------------- /tests/resources/fandango.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/resources/fandango.fan -------------------------------------------------------------------------------- /tests/resources/forecaster.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/resources/forecaster.fan -------------------------------------------------------------------------------- /tests/resources/gen_number.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/resources/gen_number.fan -------------------------------------------------------------------------------- /tests/resources/generator_remove.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/resources/generator_remove.fan -------------------------------------------------------------------------------- /tests/resources/grammar.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/resources/grammar.fan -------------------------------------------------------------------------------- /tests/resources/grammar_primary.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/resources/grammar_primary.fan -------------------------------------------------------------------------------- /tests/resources/hash.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/resources/hash.fan -------------------------------------------------------------------------------- /tests/resources/import.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/resources/import.fan -------------------------------------------------------------------------------- /tests/resources/imported.py: -------------------------------------------------------------------------------- 1 | secret = "joshua" 2 | -------------------------------------------------------------------------------- /tests/resources/incomplete.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/resources/incomplete.fan -------------------------------------------------------------------------------- /tests/resources/indent.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/resources/indent.fan -------------------------------------------------------------------------------- /tests/resources/indirect_children.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/resources/indirect_children.fan -------------------------------------------------------------------------------- /tests/resources/int.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/resources/int.fan -------------------------------------------------------------------------------- /tests/resources/iso8601.txt: -------------------------------------------------------------------------------- 1 | 2025-001 -------------------------------------------------------------------------------- /tests/resources/long_string.fan: -------------------------------------------------------------------------------- 1 | ::= + := "a" * 1000 -------------------------------------------------------------------------------- /tests/resources/min_reps.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/resources/min_reps.fan -------------------------------------------------------------------------------- /tests/resources/minimal_io.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/resources/minimal_io.fan -------------------------------------------------------------------------------- /tests/resources/nested_grammar_parameters.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/resources/nested_grammar_parameters.fan -------------------------------------------------------------------------------- /tests/resources/persons.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/resources/persons.fan -------------------------------------------------------------------------------- /tests/resources/persons_with_constr.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/resources/persons_with_constr.fan -------------------------------------------------------------------------------- /tests/resources/repetitions.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/resources/repetitions.fan -------------------------------------------------------------------------------- /tests/resources/rgb.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/resources/rgb.fan -------------------------------------------------------------------------------- /tests/resources/rgb.txt: -------------------------------------------------------------------------------- 1 | rgbd; -------------------------------------------------------------------------------- /tests/resources/simple.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/resources/simple.fan -------------------------------------------------------------------------------- /tests/resources/simple_softvalue.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/resources/simple_softvalue.fan -------------------------------------------------------------------------------- /tests/resources/slicing.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/resources/slicing.fan -------------------------------------------------------------------------------- /tests/resources/softvalue.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/resources/softvalue.fan -------------------------------------------------------------------------------- /tests/resources/test_libfuzzer_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/resources/test_libfuzzer_interface.c -------------------------------------------------------------------------------- /tests/resources/twodigits.fan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/resources/twodigits.fan -------------------------------------------------------------------------------- /tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/test_api.py -------------------------------------------------------------------------------- /tests/test_benchmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/test_benchmarks.py -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/test_cli.py -------------------------------------------------------------------------------- /tests/test_constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/test_constraints.py -------------------------------------------------------------------------------- /tests/test_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/test_convert.py -------------------------------------------------------------------------------- /tests/test_evaluate_individual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/test_evaluate_individual.py -------------------------------------------------------------------------------- /tests/test_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/test_evaluation.py -------------------------------------------------------------------------------- /tests/test_fan_parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/test_fan_parsers.py -------------------------------------------------------------------------------- /tests/test_forecaster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/test_forecaster.py -------------------------------------------------------------------------------- /tests/test_fstrings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/test_fstrings.py -------------------------------------------------------------------------------- /tests/test_grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/test_grammar.py -------------------------------------------------------------------------------- /tests/test_grammar_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/test_grammar_settings.py -------------------------------------------------------------------------------- /tests/test_havoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/test_havoc.py -------------------------------------------------------------------------------- /tests/test_language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/test_language.py -------------------------------------------------------------------------------- /tests/test_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/test_meta.py -------------------------------------------------------------------------------- /tests/test_msg_exchange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/test_msg_exchange.py -------------------------------------------------------------------------------- /tests/test_optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/test_optimizer.py -------------------------------------------------------------------------------- /tests/test_parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/test_parsing.py -------------------------------------------------------------------------------- /tests/test_searches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/test_searches.py -------------------------------------------------------------------------------- /tests/test_slices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/test_slices.py -------------------------------------------------------------------------------- /tests/test_softconstraint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/test_softconstraint.py -------------------------------------------------------------------------------- /tests/test_star.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/test_star.py -------------------------------------------------------------------------------- /tests/test_structural_out_of_grammar_mutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/test_structural_out_of_grammar_mutation.py -------------------------------------------------------------------------------- /tests/test_tree_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/test_tree_value.py -------------------------------------------------------------------------------- /tests/test_visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/test_visitor.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandango-fuzzer/fandango/HEAD/tests/utils.py --------------------------------------------------------------------------------