use of org.cytoscape.equations.CodeAndSourceLocation in project cytoscape-impl by cytoscape.
the class IdentNode method genCode.
public void genCode(final Stack<CodeAndSourceLocation> codeStack) {
if (defaultValue != null)
codeStack.push(new CodeAndSourceLocation(defaultValue, -1));
codeStack.push(new CodeAndSourceLocation(attribName, -1));
codeStack.push(new CodeAndSourceLocation(defaultValue == null ? Instruction.AREF : Instruction.AREF2, getSourceLocation()));
}
Aggregations