1 32 package org.jruby.ast; 33 34 import java.util.List ; 35 36 import org.jruby.ast.visitor.NodeVisitor; 37 import org.jruby.evaluator.Instruction; 38 import org.jruby.lexer.yacc.ISourcePosition; 39 40 44 public class StarNode extends Node { 45 static final long serialVersionUID = 8314131941892458677L; 46 47 48 51 public StarNode(ISourcePosition position) { 52 super(position, NodeTypes.STARNODE); 53 } 54 55 58 public Instruction accept(NodeVisitor visitor) { 59 return null; } 61 62 public List childNodes() { 63 return EMPTY_LIST; 64 } 65 66 } 67 | Popular Tags |