コード例 #1
0
ファイル: RemoveSubranges.java プロジェクト: lgwagner/jkind
 public static Type remove(Type type) {
   return type.accept(new RemoveSubranges());
 }
コード例 #2
0
ファイル: DefaultValueVisitor.java プロジェクト: djyou/lustre
 public static Value get(Type type) {
   DefaultValueVisitor visitor = new DefaultValueVisitor();
   return type.accept(visitor);
 }