io.deephaven.lang.generated.ChunkerMethodName Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deephaven-open-api-lang-parser Show documentation
Show all versions of deephaven-open-api-lang-parser Show documentation
The 'open-api-lang-parser' project
/* Generated By:JJTree: Do not edit this line. ChunkerMethodName.java Version 7.0 */
/* JavaCCOptions:MULTI=true,NODE_USES_PARSER=true,VISITOR=true,TRACK_TOKENS=true,NODE_PREFIX=Chunker,NODE_EXTENDS=,NODE_FACTORY=,SUPPORT_CLASS_VISIBILITY_PUBLIC=true */
package io.deephaven.lang.generated;
import io.deephaven.lang.api.ChunkerInvokable;
public
class ChunkerMethodName extends SimpleNode {
public ChunkerMethodName(int id) {
super(id);
}
public ChunkerMethodName(Chunker p, int id) {
super(p, id);
}
/** Accept the visitor. **/
public Object jjtAccept(ChunkerVisitor visitor, Object data) {
return
visitor.visitChunkerMethodName(this, data);
}
public ChunkerInvokable getInvocation() {
assert parent instanceof ChunkerInvokable : "Only an invokable may contain a method name; " + parent + " is not supported";
return (ChunkerInvokable) parent;
}
@Override
public boolean isAutocompleteTerminal() {
return true;
}
}
/* JavaCC - OriginalChecksum=96a6010112bd59066087f310a6e11843 (do not edit this line) */