示例#1
0
 public static Type remove(Type type) {
   return type.accept(new RemoveSubranges());
 }
示例#2
0
 public static Value get(Type type) {
   DefaultValueVisitor visitor = new DefaultValueVisitor();
   return type.accept(visitor);
 }