ZeroOrMoreBlock.java
上传用户:afrynkmhm
上传日期:2007-01-06
资源大小:1262k
文件大小:1k
- package antlr;
- /* ANTLR Translator Generator
- * Project led by Terence Parr at http://www.jGuru.com
- * Software rights: http://www.antlr.org/RIGHTS.html
- *
- * $Id: //depot/code/org.antlr/release/antlr-2.7.0/antlr/ZeroOrMoreBlock.java#1 $
- */
- class ZeroOrMoreBlock extends BlockWithImpliedExitPath {
- public ZeroOrMoreBlock(Grammar g) {
- super(g);
- }
- public ZeroOrMoreBlock(Grammar g, int line) {
- super(g, line);
- }
- public void generate() {
- grammar.generator.gen(this);
- }
- public Lookahead look(int k) {
- return grammar.theLLkAnalyzer.look(k, this);
- }
- public String toString() {
- return super.toString() + "*";
- }
- }