Пример #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);
 }