1 package polyglot.ext.jl.ast; 2 3 import polyglot.ast.*; 4 import polyglot.types.*; 5 import polyglot.visit.*; 6 import polyglot.util.*; 7 import java.util.*; 8 9 12 public class Empty_c extends Stmt_c implements Empty 13 { 14 public Empty_c(Position pos) { 15 super(pos); 16 } 17 18 19 public void prettyPrint(CodeWriter w, PrettyPrinter tr) { 20 w.write(";"); 21 } 22 23 27 public Term entry() { 28 return this; 29 } 30 31 34 public List acceptCFG(CFGBuilder v, List succs) { 35 return succs; 36 } 37 38 public String toString() { 39 return ";"; 40 } 41 } 42 | Popular Tags |