HomeSort by relevance Sort by last modified time
    Searched defs:arrTy (Results 1 - 2 of 2) sorted by null

  /external/turbine/java/com/google/turbine/parse/
Parser.java 36 import com.google.turbine.tree.Tree.ArrTy;
750 ArrTy arrTy = (ArrTy) type;
751 return new ArrTy(arrTy.position(), arrTy.annos(), extraDims(arrTy.elem(), extra));
753 return new ArrTy(type.position(), extra.pop(), extraDims(type, extra));
787 ty = new ArrTy(position, typeAnnos, ty)
    [all...]
  /external/turbine/java/com/google/turbine/tree/
Pretty.java 91 public Void visitArrTy(Tree.ArrTy arrTy, Void input) {
92 arrTy.elem().accept(this, null);
93 if (!arrTy.annos().isEmpty()) {
95 printAnnos(arrTy.annos());

Completed in 68 milliseconds