forked from jasder/antlr
update copyright
[git-p4: depot-paths = "//depot/code/antlr4/main/": change = 8808]
This commit is contained in:
parent
1775feffdb
commit
a421082008
|
@ -0,0 +1,106 @@
|
|||
/*
|
||||
[The "BSD license"]
|
||||
Copyright (c) 2011 Terence Parr
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions
|
||||
are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
2. Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in the
|
||||
documentation and/or other materials provided with the distribution.
|
||||
3. The name of the author may not be used to endorse or promote products
|
||||
derived from this software without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
||||
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
||||
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
||||
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
package org.antlr.v4.codegen;
|
||||
|
||||
import org.antlr.v4.codegen.model.*;
|
||||
import org.antlr.v4.runtime.misc.IntervalSet;
|
||||
import org.antlr.v4.tool.*;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public interface OutputModelFactory {
|
||||
Grammar getGrammar();
|
||||
|
||||
CodeGenerator getGenerator();
|
||||
|
||||
ParserFile parserFile(String fileName);
|
||||
|
||||
Parser parser(ParserFile file);
|
||||
|
||||
LexerFile lexerFile(String fileName);
|
||||
|
||||
Lexer lexer(LexerFile file);
|
||||
|
||||
RuleFunction rule(Rule r);
|
||||
|
||||
List<SrcOp> rulePostamble(RuleFunction function, Rule r);
|
||||
|
||||
// ELEMENT TRIGGERS
|
||||
|
||||
List<SrcOp> alternative(List<SrcOp> elems);
|
||||
|
||||
List<SrcOp> ruleRef(GrammarAST ID, GrammarAST label, GrammarAST args);
|
||||
|
||||
List<SrcOp> tokenRef(GrammarAST ID, GrammarAST label, GrammarAST args);
|
||||
|
||||
List<SrcOp> stringRef(GrammarAST ID, GrammarAST label);
|
||||
|
||||
List<SrcOp> epsilon();
|
||||
|
||||
List<SrcOp> action(GrammarAST ast);
|
||||
|
||||
List<SrcOp> forcedAction(GrammarAST ast);
|
||||
|
||||
List<SrcOp> sempred(GrammarAST ast);
|
||||
|
||||
List<SrcOp> rootToken(List<SrcOp> ops);
|
||||
|
||||
List<SrcOp> rootRule(List<SrcOp> ops);
|
||||
|
||||
List<SrcOp> getChoiceBlock(BlockAST blkAST, List<SrcOp> alts);
|
||||
|
||||
List<SrcOp> getEBNFBlock(GrammarAST ebnfRoot, List<SrcOp> alts);
|
||||
|
||||
List<SrcOp> getLL1ChoiceBlock(BlockAST blkAST, List<SrcOp> alts);
|
||||
|
||||
List<SrcOp> getLLStarChoiceBlock(BlockAST blkAST, List<SrcOp> alts);
|
||||
|
||||
List<SrcOp> getLL1EBNFBlock(GrammarAST ebnfRoot, List<SrcOp> alts);
|
||||
|
||||
List<SrcOp> getLLStarEBNFBlock(GrammarAST ebnfRoot, List<SrcOp> alts);
|
||||
|
||||
List<SrcOp> getLL1Test(IntervalSet look, GrammarAST blkAST);
|
||||
|
||||
// CONTEXT MANIPULATION
|
||||
|
||||
OutputModelObject getRoot();
|
||||
|
||||
void setRoot(OutputModelObject root);
|
||||
|
||||
RuleFunction getCurrentRule();
|
||||
|
||||
void pushCurrentRule(RuleFunction r);
|
||||
|
||||
RuleFunction popCurrentRule();
|
||||
|
||||
Alternative getCurrentAlt();
|
||||
|
||||
void setCurrentAlt(Alternative currentAlt);
|
||||
}
|
Loading…
Reference in New Issue