1 package polyglot.ext.jl.ast; 2 3 import java.util.List ; 4 5 import polyglot.ast.SwitchBlock; 6 import polyglot.types.Context; 7 import polyglot.util.Position; 8 9 12 public class SwitchBlock_c extends AbstractBlock_c implements SwitchBlock 13 { 14 public SwitchBlock_c(Position pos, List statements) { 15 super(pos, statements); 16 } 17 18 32 public Context enterScope(Context c) { 33 return c; 34 } 35 } 36 | Popular Tags |