Searched refs:tyargs (Results 1 – 5 of 5) sorted by relevance
/external/turbine/java/com/google/turbine/lower/ |
D | LowerSignature.java | 116 ImmutableList.Builder<TySig> tyargs = ImmutableList.builder(); in tyArgSigs() local 118 tyargs.add(signature(targ)); in tyArgSigs() 120 return tyargs.build(); in tyArgSigs()
|
/external/turbine/java/com/google/turbine/tree/ |
D | Tree.java | 256 private final ImmutableList<Type> tyargs; field in Tree.ClassTy 262 ImmutableList<Type> tyargs, in ClassTy() argument 267 this.tyargs = tyargs; in ClassTy() 295 public ImmutableList<Type> tyargs() { in tyargs() method in Tree.ClassTy 296 return tyargs; in tyargs()
|
D | Pretty.java | 135 if (!classTy.tyargs().isEmpty()) { in visitClassTy() 138 for (Tree t : classTy.tyargs()) { in visitClassTy()
|
/external/turbine/java/com/google/turbine/parse/ |
D | Parser.java | 717 position, Optional.<ClassTy>empty(), ident, tyargs(), ImmutableList.of()); in classMember() 1088 ImmutableList<Type> tyargs = ImmutableList.of(); in classty() local 1090 tyargs = tyargs(); in classty() 1092 ty = new ClassTy(pos, Optional.ofNullable(ty), name, tyargs, typeAnnos); in classty() 1098 private ImmutableList<Type> tyargs() { in tyargs() method in Parser
|
/external/turbine/java/com/google/turbine/binder/ |
D | TypeBinder.java | 682 sym, bindTyArgs(scope, flat.get(idx++).tyargs()), annotations)); in bindClassTyRest() 692 Type.ClassTy.SimpleClassTy.create(sym, bindTyArgs(scope, curr.tyargs()), annotations)); in bindClassTyRest()
|