first commit
This commit is contained in:
15
hrmsEjb/org/nfunk/jep/ASTStart.java
Normal file
15
hrmsEjb/org/nfunk/jep/ASTStart.java
Normal file
@@ -0,0 +1,15 @@
|
||||
package org.nfunk.jep;
|
||||
|
||||
public class ASTStart extends SimpleNode {
|
||||
public ASTStart(int paramInt) {
|
||||
super(paramInt);
|
||||
}
|
||||
|
||||
public ASTStart(Parser paramParser, int paramInt) {
|
||||
super(paramParser, paramInt);
|
||||
}
|
||||
|
||||
public Object jjtAccept(ParserVisitor paramParserVisitor, Object paramObject) throws ParseException {
|
||||
return paramParserVisitor.visit(this, paramObject);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user