Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
ANTLR Tool Source Code
ANTLR is a powerful parser generator for multiple programming languages including Java.
ANTLR contains 2 major modules:
ANTLR Tool Source Code files are provided in the distribution packge (antlr4-4.10.1.zip). You can download them at ANTLR Website.
You can also browse the source code below:
✍: FYIcenter
⏎ org/antlr/v4/codegen/BlankOutputModelFactory.java
/* * Copyright (c) 2012-2017 The ANTLR Project. All rights reserved. * Use of this file is governed by the BSD 3-clause license that * can be found in the LICENSE.txt file in the project root. */ package org.antlr.v4.codegen; import org.antlr.v4.codegen.model.Choice; import org.antlr.v4.codegen.model.CodeBlockForAlt; import org.antlr.v4.codegen.model.LabeledOp; import org.antlr.v4.codegen.model.Lexer; import org.antlr.v4.codegen.model.LexerFile; import org.antlr.v4.codegen.model.Parser; import org.antlr.v4.codegen.model.ParserFile; import org.antlr.v4.codegen.model.RuleFunction; import org.antlr.v4.codegen.model.SrcOp; import org.antlr.v4.runtime.misc.IntervalSet; import org.antlr.v4.tool.Alternative; import org.antlr.v4.tool.Rule; import org.antlr.v4.tool.ast.ActionAST; import org.antlr.v4.tool.ast.BlockAST; import org.antlr.v4.tool.ast.GrammarAST; import java.util.List; public abstract class BlankOutputModelFactory implements OutputModelFactory { @Override public ParserFile parserFile(String fileName) { return null; } @Override public Parser parser(ParserFile file) { return null; } @Override public RuleFunction rule(Rule r) { return null; } @Override public List<SrcOp> rulePostamble(RuleFunction function, Rule r) { return null; } @Override public LexerFile lexerFile(String fileName) { return null; } @Override public Lexer lexer(LexerFile file) { return null; } // ALTERNATIVES / ELEMENTS @Override public CodeBlockForAlt alternative(Alternative alt, boolean outerMost) { return null; } @Override public CodeBlockForAlt finishAlternative(CodeBlockForAlt blk, List<SrcOp> ops) { return blk; } @Override public CodeBlockForAlt epsilon(Alternative alt, boolean outerMost) { return null; } @Override public List<SrcOp> ruleRef(GrammarAST ID, GrammarAST label, GrammarAST args) { return null; } @Override public List<SrcOp> tokenRef(GrammarAST ID, GrammarAST label, GrammarAST args) { return null; } @Override public List<SrcOp> stringRef(GrammarAST ID, GrammarAST label) { return tokenRef(ID, label, null); } @Override public List<SrcOp> set(GrammarAST setAST, GrammarAST label, boolean invert) { return null; } @Override public List<SrcOp> wildcard(GrammarAST ast, GrammarAST labelAST) { return null; } // ACTIONS @Override public List<SrcOp> action(ActionAST ast) { return null; } @Override public List<SrcOp> sempred(ActionAST ast) { return null; } // BLOCKS @Override public Choice getChoiceBlock(BlockAST blkAST, List<CodeBlockForAlt> alts, GrammarAST label) { return null; } @Override public Choice getEBNFBlock(GrammarAST ebnfRoot, List<CodeBlockForAlt> alts) { return null; } @Override public Choice getLL1ChoiceBlock(BlockAST blkAST, List<CodeBlockForAlt> alts) { return null; } @Override public Choice getComplexChoiceBlock(BlockAST blkAST, List<CodeBlockForAlt> alts) { return null; } @Override public Choice getLL1EBNFBlock(GrammarAST ebnfRoot, List<CodeBlockForAlt> alts) { return null; } @Override public Choice getComplexEBNFBlock(GrammarAST ebnfRoot, List<CodeBlockForAlt> alts) { return null; } @Override public List<SrcOp> getLL1Test(IntervalSet look, GrammarAST blkAST) { return null; } @Override public boolean needsImplicitLabel(GrammarAST ID, LabeledOp op) { return false; } }
⏎ org/antlr/v4/codegen/BlankOutputModelFactory.java
Or download all of them as a single archive file:
File name: antlr-tool-4.10.1-sources.jar File size: 347718 bytes Release date: 2022-04-15 Download
2022-04-24, 31973👍, 0💬
Popular Posts:
JLayer is a library that decodes/plays/converts MPEG 1/2/2.5 Layer 1/2/3 (i.e. MP3) in real time for...
What Is jaxb-impl-2.1.12.jar? Java Architecture for XML Binding (JAXB) is a Java API that allows Jav...
Apache Ant Source Code Files are inside the Apache Ant source package file like apache-ant-1.10.10-s...
Jackson is "the Java JSON library" or "the best JSON parser for Java". Or simply as "JSON for Java"....
GJT (Giant Java Tree) implementation of XML Pull Parser. JAR File Size and Download Location: File n...