src/share/classes/com/sun/tools/javac/comp/Attr.java

Wed, 17 Jul 2013 14:19:25 +0100

author
mcimadamore
date
Wed, 17 Jul 2013 14:19:25 +0100
changeset 1904
b577222ef7b3
parent 1899
c60a5099863a
child 1907
e990e6bcecbe
permissions
-rw-r--r--

8019340: varargs-related warnings are meaningless on signature-polymorphic methods such as MethodHandle.invokeExact
Summary: Disable certain varargs warnings when compiling polymorphic signature calls
Reviewed-by: jjg

     1 /*
     2  * Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     8  * particular file as subject to the "Classpath" exception as provided
     9  * by Oracle in the LICENSE file that accompanied this code.
    10  *
    11  * This code is distributed in the hope that it will be useful, but WITHOUT
    12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    14  * version 2 for more details (a copy is included in the LICENSE file that
    15  * accompanied this code).
    16  *
    17  * You should have received a copy of the GNU General Public License version
    18  * 2 along with this work; if not, write to the Free Software Foundation,
    19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    20  *
    21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    22  * or visit www.oracle.com if you need additional information or have any
    23  * questions.
    24  */
    26 package com.sun.tools.javac.comp;
    28 import java.util.*;
    30 import javax.lang.model.element.ElementKind;
    31 import javax.lang.model.type.TypeKind;
    32 import javax.tools.JavaFileObject;
    34 import com.sun.source.tree.IdentifierTree;
    35 import com.sun.source.tree.MemberReferenceTree.ReferenceMode;
    36 import com.sun.source.tree.MemberSelectTree;
    37 import com.sun.source.tree.TreeVisitor;
    38 import com.sun.source.util.SimpleTreeVisitor;
    39 import com.sun.tools.javac.code.*;
    40 import com.sun.tools.javac.code.Lint.LintCategory;
    41 import com.sun.tools.javac.code.Symbol.*;
    42 import com.sun.tools.javac.code.Type.*;
    43 import com.sun.tools.javac.comp.Check.CheckContext;
    44 import com.sun.tools.javac.comp.DeferredAttr.AttrMode;
    45 import com.sun.tools.javac.comp.Infer.InferenceContext;
    46 import com.sun.tools.javac.comp.Infer.FreeTypeListener;
    47 import com.sun.tools.javac.jvm.*;
    48 import com.sun.tools.javac.tree.*;
    49 import com.sun.tools.javac.tree.JCTree.*;
    50 import com.sun.tools.javac.tree.JCTree.JCPolyExpression.*;
    51 import com.sun.tools.javac.util.*;
    52 import com.sun.tools.javac.util.JCDiagnostic.DiagnosticPosition;
    53 import com.sun.tools.javac.util.List;
    54 import static com.sun.tools.javac.code.Flags.*;
    55 import static com.sun.tools.javac.code.Flags.ANNOTATION;
    56 import static com.sun.tools.javac.code.Flags.BLOCK;
    57 import static com.sun.tools.javac.code.Kinds.*;
    58 import static com.sun.tools.javac.code.Kinds.ERRONEOUS;
    59 import static com.sun.tools.javac.code.TypeTag.*;
    60 import static com.sun.tools.javac.code.TypeTag.WILDCARD;
    61 import static com.sun.tools.javac.tree.JCTree.Tag.*;
    63 /** This is the main context-dependent analysis phase in GJC. It
    64  *  encompasses name resolution, type checking and constant folding as
    65  *  subtasks. Some subtasks involve auxiliary classes.
    66  *  @see Check
    67  *  @see Resolve
    68  *  @see ConstFold
    69  *  @see Infer
    70  *
    71  *  <p><b>This is NOT part of any supported API.
    72  *  If you write code that depends on this, you do so at your own risk.
    73  *  This code and its internal interfaces are subject to change or
    74  *  deletion without notice.</b>
    75  */
    76 public class Attr extends JCTree.Visitor {
    77     protected static final Context.Key<Attr> attrKey =
    78         new Context.Key<Attr>();
    80     final Names names;
    81     final Log log;
    82     final Symtab syms;
    83     final Resolve rs;
    84     final Infer infer;
    85     final DeferredAttr deferredAttr;
    86     final Check chk;
    87     final Flow flow;
    88     final MemberEnter memberEnter;
    89     final TreeMaker make;
    90     final ConstFold cfolder;
    91     final Enter enter;
    92     final Target target;
    93     final Types types;
    94     final JCDiagnostic.Factory diags;
    95     final Annotate annotate;
    96     final DeferredLintHandler deferredLintHandler;
    98     public static Attr instance(Context context) {
    99         Attr instance = context.get(attrKey);
   100         if (instance == null)
   101             instance = new Attr(context);
   102         return instance;
   103     }
   105     protected Attr(Context context) {
   106         context.put(attrKey, this);
   108         names = Names.instance(context);
   109         log = Log.instance(context);
   110         syms = Symtab.instance(context);
   111         rs = Resolve.instance(context);
   112         chk = Check.instance(context);
   113         flow = Flow.instance(context);
   114         memberEnter = MemberEnter.instance(context);
   115         make = TreeMaker.instance(context);
   116         enter = Enter.instance(context);
   117         infer = Infer.instance(context);
   118         deferredAttr = DeferredAttr.instance(context);
   119         cfolder = ConstFold.instance(context);
   120         target = Target.instance(context);
   121         types = Types.instance(context);
   122         diags = JCDiagnostic.Factory.instance(context);
   123         annotate = Annotate.instance(context);
   124         deferredLintHandler = DeferredLintHandler.instance(context);
   126         Options options = Options.instance(context);
   128         Source source = Source.instance(context);
   129         allowGenerics = source.allowGenerics();
   130         allowVarargs = source.allowVarargs();
   131         allowEnums = source.allowEnums();
   132         allowBoxing = source.allowBoxing();
   133         allowCovariantReturns = source.allowCovariantReturns();
   134         allowAnonOuterThis = source.allowAnonOuterThis();
   135         allowStringsInSwitch = source.allowStringsInSwitch();
   136         allowPoly = source.allowPoly();
   137         allowTypeAnnos = source.allowTypeAnnotations();
   138         allowLambda = source.allowLambda();
   139         allowDefaultMethods = source.allowDefaultMethods();
   140         sourceName = source.name;
   141         relax = (options.isSet("-retrofit") ||
   142                  options.isSet("-relax"));
   143         findDiamonds = options.get("findDiamond") != null &&
   144                  source.allowDiamond();
   145         useBeforeDeclarationWarning = options.isSet("useBeforeDeclarationWarning");
   146         identifyLambdaCandidate = options.getBoolean("identifyLambdaCandidate", false);
   148         statInfo = new ResultInfo(NIL, Type.noType);
   149         varInfo = new ResultInfo(VAR, Type.noType);
   150         unknownExprInfo = new ResultInfo(VAL, Type.noType);
   151         unknownAnyPolyInfo = new ResultInfo(VAL, Infer.anyPoly);
   152         unknownTypeInfo = new ResultInfo(TYP, Type.noType);
   153         unknownTypeExprInfo = new ResultInfo(Kinds.TYP | Kinds.VAL, Type.noType);
   154         recoveryInfo = new RecoveryInfo(deferredAttr.emptyDeferredAttrContext);
   155     }
   157     /** Switch: relax some constraints for retrofit mode.
   158      */
   159     boolean relax;
   161     /** Switch: support target-typing inference
   162      */
   163     boolean allowPoly;
   165     /** Switch: support type annotations.
   166      */
   167     boolean allowTypeAnnos;
   169     /** Switch: support generics?
   170      */
   171     boolean allowGenerics;
   173     /** Switch: allow variable-arity methods.
   174      */
   175     boolean allowVarargs;
   177     /** Switch: support enums?
   178      */
   179     boolean allowEnums;
   181     /** Switch: support boxing and unboxing?
   182      */
   183     boolean allowBoxing;
   185     /** Switch: support covariant result types?
   186      */
   187     boolean allowCovariantReturns;
   189     /** Switch: support lambda expressions ?
   190      */
   191     boolean allowLambda;
   193     /** Switch: support default methods ?
   194      */
   195     boolean allowDefaultMethods;
   197     /** Switch: allow references to surrounding object from anonymous
   198      * objects during constructor call?
   199      */
   200     boolean allowAnonOuterThis;
   202     /** Switch: generates a warning if diamond can be safely applied
   203      *  to a given new expression
   204      */
   205     boolean findDiamonds;
   207     /**
   208      * Internally enables/disables diamond finder feature
   209      */
   210     static final boolean allowDiamondFinder = true;
   212     /**
   213      * Switch: warn about use of variable before declaration?
   214      * RFE: 6425594
   215      */
   216     boolean useBeforeDeclarationWarning;
   218     /**
   219      * Switch: generate warnings whenever an anonymous inner class that is convertible
   220      * to a lambda expression is found
   221      */
   222     boolean identifyLambdaCandidate;
   224     /**
   225      * Switch: allow strings in switch?
   226      */
   227     boolean allowStringsInSwitch;
   229     /**
   230      * Switch: name of source level; used for error reporting.
   231      */
   232     String sourceName;
   234     /** Check kind and type of given tree against protokind and prototype.
   235      *  If check succeeds, store type in tree and return it.
   236      *  If check fails, store errType in tree and return it.
   237      *  No checks are performed if the prototype is a method type.
   238      *  It is not necessary in this case since we know that kind and type
   239      *  are correct.
   240      *
   241      *  @param tree     The tree whose kind and type is checked
   242      *  @param ownkind  The computed kind of the tree
   243      *  @param resultInfo  The expected result of the tree
   244      */
   245     Type check(final JCTree tree, final Type found, final int ownkind, final ResultInfo resultInfo) {
   246         InferenceContext inferenceContext = resultInfo.checkContext.inferenceContext();
   247         Type owntype = found;
   248         if (!owntype.hasTag(ERROR) && !resultInfo.pt.hasTag(METHOD) && !resultInfo.pt.hasTag(FORALL)) {
   249             if (allowPoly && inferenceContext.free(found)) {
   250                 inferenceContext.addFreeTypeListener(List.of(found, resultInfo.pt), new FreeTypeListener() {
   251                     @Override
   252                     public void typesInferred(InferenceContext inferenceContext) {
   253                         ResultInfo pendingResult =
   254                                     resultInfo.dup(inferenceContext.asInstType(resultInfo.pt));
   255                         check(tree, inferenceContext.asInstType(found), ownkind, pendingResult);
   256                     }
   257                 });
   258                 return tree.type = resultInfo.pt;
   259             } else {
   260                 if ((ownkind & ~resultInfo.pkind) == 0) {
   261                     owntype = resultInfo.check(tree, owntype);
   262                 } else {
   263                     log.error(tree.pos(), "unexpected.type",
   264                             kindNames(resultInfo.pkind),
   265                             kindName(ownkind));
   266                     owntype = types.createErrorType(owntype);
   267                 }
   268             }
   269         }
   270         tree.type = owntype;
   271         return owntype;
   272     }
   274     /** Is given blank final variable assignable, i.e. in a scope where it
   275      *  may be assigned to even though it is final?
   276      *  @param v      The blank final variable.
   277      *  @param env    The current environment.
   278      */
   279     boolean isAssignableAsBlankFinal(VarSymbol v, Env<AttrContext> env) {
   280         Symbol owner = owner(env);
   281            // owner refers to the innermost variable, method or
   282            // initializer block declaration at this point.
   283         return
   284             v.owner == owner
   285             ||
   286             ((owner.name == names.init ||    // i.e. we are in a constructor
   287               owner.kind == VAR ||           // i.e. we are in a variable initializer
   288               (owner.flags() & BLOCK) != 0)  // i.e. we are in an initializer block
   289              &&
   290              v.owner == owner.owner
   291              &&
   292              ((v.flags() & STATIC) != 0) == Resolve.isStatic(env));
   293     }
   295     /**
   296      * Return the innermost enclosing owner symbol in a given attribution context
   297      */
   298     Symbol owner(Env<AttrContext> env) {
   299         while (true) {
   300             switch (env.tree.getTag()) {
   301                 case VARDEF:
   302                     //a field can be owner
   303                     VarSymbol vsym = ((JCVariableDecl)env.tree).sym;
   304                     if (vsym.owner.kind == TYP) {
   305                         return vsym;
   306                     }
   307                     break;
   308                 case METHODDEF:
   309                     //method def is always an owner
   310                     return ((JCMethodDecl)env.tree).sym;
   311                 case CLASSDEF:
   312                     //class def is always an owner
   313                     return ((JCClassDecl)env.tree).sym;
   314                 case LAMBDA:
   315                     //a lambda is an owner - return a fresh synthetic method symbol
   316                     return new MethodSymbol(0, names.empty, null, syms.methodClass);
   317                 case BLOCK:
   318                     //static/instance init blocks are owner
   319                     Symbol blockSym = env.info.scope.owner;
   320                     if ((blockSym.flags() & BLOCK) != 0) {
   321                         return blockSym;
   322                     }
   323                     break;
   324                 case TOPLEVEL:
   325                     //toplevel is always an owner (for pkge decls)
   326                     return env.info.scope.owner;
   327             }
   328             Assert.checkNonNull(env.next);
   329             env = env.next;
   330         }
   331     }
   333     /** Check that variable can be assigned to.
   334      *  @param pos    The current source code position.
   335      *  @param v      The assigned varaible
   336      *  @param base   If the variable is referred to in a Select, the part
   337      *                to the left of the `.', null otherwise.
   338      *  @param env    The current environment.
   339      */
   340     void checkAssignable(DiagnosticPosition pos, VarSymbol v, JCTree base, Env<AttrContext> env) {
   341         if ((v.flags() & FINAL) != 0 &&
   342             ((v.flags() & HASINIT) != 0
   343              ||
   344              !((base == null ||
   345                (base.hasTag(IDENT) && TreeInfo.name(base) == names._this)) &&
   346                isAssignableAsBlankFinal(v, env)))) {
   347             if (v.isResourceVariable()) { //TWR resource
   348                 log.error(pos, "try.resource.may.not.be.assigned", v);
   349             } else {
   350                 log.error(pos, "cant.assign.val.to.final.var", v);
   351             }
   352         }
   353     }
   355     /** Does tree represent a static reference to an identifier?
   356      *  It is assumed that tree is either a SELECT or an IDENT.
   357      *  We have to weed out selects from non-type names here.
   358      *  @param tree    The candidate tree.
   359      */
   360     boolean isStaticReference(JCTree tree) {
   361         if (tree.hasTag(SELECT)) {
   362             Symbol lsym = TreeInfo.symbol(((JCFieldAccess) tree).selected);
   363             if (lsym == null || lsym.kind != TYP) {
   364                 return false;
   365             }
   366         }
   367         return true;
   368     }
   370     /** Is this symbol a type?
   371      */
   372     static boolean isType(Symbol sym) {
   373         return sym != null && sym.kind == TYP;
   374     }
   376     /** The current `this' symbol.
   377      *  @param env    The current environment.
   378      */
   379     Symbol thisSym(DiagnosticPosition pos, Env<AttrContext> env) {
   380         return rs.resolveSelf(pos, env, env.enclClass.sym, names._this);
   381     }
   383     /** Attribute a parsed identifier.
   384      * @param tree Parsed identifier name
   385      * @param topLevel The toplevel to use
   386      */
   387     public Symbol attribIdent(JCTree tree, JCCompilationUnit topLevel) {
   388         Env<AttrContext> localEnv = enter.topLevelEnv(topLevel);
   389         localEnv.enclClass = make.ClassDef(make.Modifiers(0),
   390                                            syms.errSymbol.name,
   391                                            null, null, null, null);
   392         localEnv.enclClass.sym = syms.errSymbol;
   393         return tree.accept(identAttributer, localEnv);
   394     }
   395     // where
   396         private TreeVisitor<Symbol,Env<AttrContext>> identAttributer = new IdentAttributer();
   397         private class IdentAttributer extends SimpleTreeVisitor<Symbol,Env<AttrContext>> {
   398             @Override
   399             public Symbol visitMemberSelect(MemberSelectTree node, Env<AttrContext> env) {
   400                 Symbol site = visit(node.getExpression(), env);
   401                 if (site.kind == ERR)
   402                     return site;
   403                 Name name = (Name)node.getIdentifier();
   404                 if (site.kind == PCK) {
   405                     env.toplevel.packge = (PackageSymbol)site;
   406                     return rs.findIdentInPackage(env, (TypeSymbol)site, name, TYP | PCK);
   407                 } else {
   408                     env.enclClass.sym = (ClassSymbol)site;
   409                     return rs.findMemberType(env, site.asType(), name, (TypeSymbol)site);
   410                 }
   411             }
   413             @Override
   414             public Symbol visitIdentifier(IdentifierTree node, Env<AttrContext> env) {
   415                 return rs.findIdent(env, (Name)node.getName(), TYP | PCK);
   416             }
   417         }
   419     public Type coerce(Type etype, Type ttype) {
   420         return cfolder.coerce(etype, ttype);
   421     }
   423     public Type attribType(JCTree node, TypeSymbol sym) {
   424         Env<AttrContext> env = enter.typeEnvs.get(sym);
   425         Env<AttrContext> localEnv = env.dup(node, env.info.dup());
   426         return attribTree(node, localEnv, unknownTypeInfo);
   427     }
   429     public Type attribImportQualifier(JCImport tree, Env<AttrContext> env) {
   430         // Attribute qualifying package or class.
   431         JCFieldAccess s = (JCFieldAccess)tree.qualid;
   432         return attribTree(s.selected,
   433                        env,
   434                        new ResultInfo(tree.staticImport ? TYP : (TYP | PCK),
   435                        Type.noType));
   436     }
   438     public Env<AttrContext> attribExprToTree(JCTree expr, Env<AttrContext> env, JCTree tree) {
   439         breakTree = tree;
   440         JavaFileObject prev = log.useSource(env.toplevel.sourcefile);
   441         try {
   442             attribExpr(expr, env);
   443         } catch (BreakAttr b) {
   444             return b.env;
   445         } catch (AssertionError ae) {
   446             if (ae.getCause() instanceof BreakAttr) {
   447                 return ((BreakAttr)(ae.getCause())).env;
   448             } else {
   449                 throw ae;
   450             }
   451         } finally {
   452             breakTree = null;
   453             log.useSource(prev);
   454         }
   455         return env;
   456     }
   458     public Env<AttrContext> attribStatToTree(JCTree stmt, Env<AttrContext> env, JCTree tree) {
   459         breakTree = tree;
   460         JavaFileObject prev = log.useSource(env.toplevel.sourcefile);
   461         try {
   462             attribStat(stmt, env);
   463         } catch (BreakAttr b) {
   464             return b.env;
   465         } catch (AssertionError ae) {
   466             if (ae.getCause() instanceof BreakAttr) {
   467                 return ((BreakAttr)(ae.getCause())).env;
   468             } else {
   469                 throw ae;
   470             }
   471         } finally {
   472             breakTree = null;
   473             log.useSource(prev);
   474         }
   475         return env;
   476     }
   478     private JCTree breakTree = null;
   480     private static class BreakAttr extends RuntimeException {
   481         static final long serialVersionUID = -6924771130405446405L;
   482         private Env<AttrContext> env;
   483         private BreakAttr(Env<AttrContext> env) {
   484             this.env = env;
   485         }
   486     }
   488     class ResultInfo {
   489         final int pkind;
   490         final Type pt;
   491         final CheckContext checkContext;
   493         ResultInfo(int pkind, Type pt) {
   494             this(pkind, pt, chk.basicHandler);
   495         }
   497         protected ResultInfo(int pkind, Type pt, CheckContext checkContext) {
   498             this.pkind = pkind;
   499             this.pt = pt;
   500             this.checkContext = checkContext;
   501         }
   503         protected Type check(final DiagnosticPosition pos, final Type found) {
   504             return chk.checkType(pos, found, pt, checkContext);
   505         }
   507         protected ResultInfo dup(Type newPt) {
   508             return new ResultInfo(pkind, newPt, checkContext);
   509         }
   511         protected ResultInfo dup(CheckContext newContext) {
   512             return new ResultInfo(pkind, pt, newContext);
   513         }
   514     }
   516     class RecoveryInfo extends ResultInfo {
   518         public RecoveryInfo(final DeferredAttr.DeferredAttrContext deferredAttrContext) {
   519             super(Kinds.VAL, Type.recoveryType, new Check.NestedCheckContext(chk.basicHandler) {
   520                 @Override
   521                 public DeferredAttr.DeferredAttrContext deferredAttrContext() {
   522                     return deferredAttrContext;
   523                 }
   524                 @Override
   525                 public boolean compatible(Type found, Type req, Warner warn) {
   526                     return true;
   527                 }
   528                 @Override
   529                 public void report(DiagnosticPosition pos, JCDiagnostic details) {
   530                     chk.basicHandler.report(pos, details);
   531                 }
   532             });
   533         }
   534     }
   536     final ResultInfo statInfo;
   537     final ResultInfo varInfo;
   538     final ResultInfo unknownAnyPolyInfo;
   539     final ResultInfo unknownExprInfo;
   540     final ResultInfo unknownTypeInfo;
   541     final ResultInfo unknownTypeExprInfo;
   542     final ResultInfo recoveryInfo;
   544     Type pt() {
   545         return resultInfo.pt;
   546     }
   548     int pkind() {
   549         return resultInfo.pkind;
   550     }
   552 /* ************************************************************************
   553  * Visitor methods
   554  *************************************************************************/
   556     /** Visitor argument: the current environment.
   557      */
   558     Env<AttrContext> env;
   560     /** Visitor argument: the currently expected attribution result.
   561      */
   562     ResultInfo resultInfo;
   564     /** Visitor result: the computed type.
   565      */
   566     Type result;
   568     /** Visitor method: attribute a tree, catching any completion failure
   569      *  exceptions. Return the tree's type.
   570      *
   571      *  @param tree    The tree to be visited.
   572      *  @param env     The environment visitor argument.
   573      *  @param resultInfo   The result info visitor argument.
   574      */
   575     Type attribTree(JCTree tree, Env<AttrContext> env, ResultInfo resultInfo) {
   576         Env<AttrContext> prevEnv = this.env;
   577         ResultInfo prevResult = this.resultInfo;
   578         try {
   579             this.env = env;
   580             this.resultInfo = resultInfo;
   581             tree.accept(this);
   582             if (tree == breakTree &&
   583                     resultInfo.checkContext.deferredAttrContext().mode == AttrMode.CHECK) {
   584                 throw new BreakAttr(copyEnv(env));
   585             }
   586             return result;
   587         } catch (CompletionFailure ex) {
   588             tree.type = syms.errType;
   589             return chk.completionError(tree.pos(), ex);
   590         } finally {
   591             this.env = prevEnv;
   592             this.resultInfo = prevResult;
   593         }
   594     }
   596     Env<AttrContext> copyEnv(Env<AttrContext> env) {
   597         Env<AttrContext> newEnv =
   598                 env.dup(env.tree, env.info.dup(copyScope(env.info.scope)));
   599         if (newEnv.outer != null) {
   600             newEnv.outer = copyEnv(newEnv.outer);
   601         }
   602         return newEnv;
   603     }
   605     Scope copyScope(Scope sc) {
   606         Scope newScope = new Scope(sc.owner);
   607         List<Symbol> elemsList = List.nil();
   608         while (sc != null) {
   609             for (Scope.Entry e = sc.elems ; e != null ; e = e.sibling) {
   610                 elemsList = elemsList.prepend(e.sym);
   611             }
   612             sc = sc.next;
   613         }
   614         for (Symbol s : elemsList) {
   615             newScope.enter(s);
   616         }
   617         return newScope;
   618     }
   620     /** Derived visitor method: attribute an expression tree.
   621      */
   622     public Type attribExpr(JCTree tree, Env<AttrContext> env, Type pt) {
   623         return attribTree(tree, env, new ResultInfo(VAL, !pt.hasTag(ERROR) ? pt : Type.noType));
   624     }
   626     /** Derived visitor method: attribute an expression tree with
   627      *  no constraints on the computed type.
   628      */
   629     public Type attribExpr(JCTree tree, Env<AttrContext> env) {
   630         return attribTree(tree, env, unknownExprInfo);
   631     }
   633     /** Derived visitor method: attribute a type tree.
   634      */
   635     public Type attribType(JCTree tree, Env<AttrContext> env) {
   636         Type result = attribType(tree, env, Type.noType);
   637         return result;
   638     }
   640     /** Derived visitor method: attribute a type tree.
   641      */
   642     Type attribType(JCTree tree, Env<AttrContext> env, Type pt) {
   643         Type result = attribTree(tree, env, new ResultInfo(TYP, pt));
   644         return result;
   645     }
   647     /** Derived visitor method: attribute a statement or definition tree.
   648      */
   649     public Type attribStat(JCTree tree, Env<AttrContext> env) {
   650         return attribTree(tree, env, statInfo);
   651     }
   653     /** Attribute a list of expressions, returning a list of types.
   654      */
   655     List<Type> attribExprs(List<JCExpression> trees, Env<AttrContext> env, Type pt) {
   656         ListBuffer<Type> ts = new ListBuffer<Type>();
   657         for (List<JCExpression> l = trees; l.nonEmpty(); l = l.tail)
   658             ts.append(attribExpr(l.head, env, pt));
   659         return ts.toList();
   660     }
   662     /** Attribute a list of statements, returning nothing.
   663      */
   664     <T extends JCTree> void attribStats(List<T> trees, Env<AttrContext> env) {
   665         for (List<T> l = trees; l.nonEmpty(); l = l.tail)
   666             attribStat(l.head, env);
   667     }
   669     /** Attribute the arguments in a method call, returning the method kind.
   670      */
   671     int attribArgs(List<JCExpression> trees, Env<AttrContext> env, ListBuffer<Type> argtypes) {
   672         int kind = VAL;
   673         for (JCExpression arg : trees) {
   674             Type argtype;
   675             if (allowPoly && deferredAttr.isDeferred(env, arg)) {
   676                 argtype = deferredAttr.new DeferredType(arg, env);
   677                 kind |= POLY;
   678             } else {
   679                 argtype = chk.checkNonVoid(arg, attribTree(arg, env, unknownAnyPolyInfo));
   680             }
   681             argtypes.append(argtype);
   682         }
   683         return kind;
   684     }
   686     /** Attribute a type argument list, returning a list of types.
   687      *  Caller is responsible for calling checkRefTypes.
   688      */
   689     List<Type> attribAnyTypes(List<JCExpression> trees, Env<AttrContext> env) {
   690         ListBuffer<Type> argtypes = new ListBuffer<Type>();
   691         for (List<JCExpression> l = trees; l.nonEmpty(); l = l.tail)
   692             argtypes.append(attribType(l.head, env));
   693         return argtypes.toList();
   694     }
   696     /** Attribute a type argument list, returning a list of types.
   697      *  Check that all the types are references.
   698      */
   699     List<Type> attribTypes(List<JCExpression> trees, Env<AttrContext> env) {
   700         List<Type> types = attribAnyTypes(trees, env);
   701         return chk.checkRefTypes(trees, types);
   702     }
   704     /**
   705      * Attribute type variables (of generic classes or methods).
   706      * Compound types are attributed later in attribBounds.
   707      * @param typarams the type variables to enter
   708      * @param env      the current environment
   709      */
   710     void attribTypeVariables(List<JCTypeParameter> typarams, Env<AttrContext> env) {
   711         for (JCTypeParameter tvar : typarams) {
   712             TypeVar a = (TypeVar)tvar.type;
   713             a.tsym.flags_field |= UNATTRIBUTED;
   714             a.bound = Type.noType;
   715             if (!tvar.bounds.isEmpty()) {
   716                 List<Type> bounds = List.of(attribType(tvar.bounds.head, env));
   717                 for (JCExpression bound : tvar.bounds.tail)
   718                     bounds = bounds.prepend(attribType(bound, env));
   719                 types.setBounds(a, bounds.reverse());
   720             } else {
   721                 // if no bounds are given, assume a single bound of
   722                 // java.lang.Object.
   723                 types.setBounds(a, List.of(syms.objectType));
   724             }
   725             a.tsym.flags_field &= ~UNATTRIBUTED;
   726         }
   727         for (JCTypeParameter tvar : typarams) {
   728             chk.checkNonCyclic(tvar.pos(), (TypeVar)tvar.type);
   729         }
   730     }
   732     /**
   733      * Attribute the type references in a list of annotations.
   734      */
   735     void attribAnnotationTypes(List<JCAnnotation> annotations,
   736                                Env<AttrContext> env) {
   737         for (List<JCAnnotation> al = annotations; al.nonEmpty(); al = al.tail) {
   738             JCAnnotation a = al.head;
   739             attribType(a.annotationType, env);
   740         }
   741     }
   743     /**
   744      * Attribute a "lazy constant value".
   745      *  @param env         The env for the const value
   746      *  @param initializer The initializer for the const value
   747      *  @param type        The expected type, or null
   748      *  @see VarSymbol#setLazyConstValue
   749      */
   750     public Object attribLazyConstantValue(Env<AttrContext> env,
   751                                       JCTree.JCExpression initializer,
   752                                       Type type) {
   754         /*  When this env was created, it didn't have the correct lint nor had
   755          *  annotations has been processed.
   756          *  But now at this phase we have already processed annotations and the
   757          *  correct lint must have been set in chk, so we should use that one to
   758          *  attribute the initializer.
   759          */
   760         Lint prevLint = env.info.lint;
   761         env.info.lint = chk.getLint();
   763         JavaFileObject prevSource = log.useSource(env.toplevel.sourcefile);
   765         try {
   766             // Use null as symbol to not attach the type annotation to any symbol.
   767             // The initializer will later also be visited and then we'll attach
   768             // to the symbol.
   769             // This prevents having multiple type annotations, just because of
   770             // lazy constant value evaluation.
   771             memberEnter.typeAnnotate(initializer, env, null);
   772             annotate.flush();
   773             Type itype = attribExpr(initializer, env, type);
   774             if (itype.constValue() != null) {
   775                 return coerce(itype, type).constValue();
   776             } else {
   777                 return null;
   778             }
   779         } finally {
   780             env.info.lint = prevLint;
   781             log.useSource(prevSource);
   782         }
   783     }
   785     /** Attribute type reference in an `extends' or `implements' clause.
   786      *  Supertypes of anonymous inner classes are usually already attributed.
   787      *
   788      *  @param tree              The tree making up the type reference.
   789      *  @param env               The environment current at the reference.
   790      *  @param classExpected     true if only a class is expected here.
   791      *  @param interfaceExpected true if only an interface is expected here.
   792      */
   793     Type attribBase(JCTree tree,
   794                     Env<AttrContext> env,
   795                     boolean classExpected,
   796                     boolean interfaceExpected,
   797                     boolean checkExtensible) {
   798         Type t = tree.type != null ?
   799             tree.type :
   800             attribType(tree, env);
   801         return checkBase(t, tree, env, classExpected, interfaceExpected, checkExtensible);
   802     }
   803     Type checkBase(Type t,
   804                    JCTree tree,
   805                    Env<AttrContext> env,
   806                    boolean classExpected,
   807                    boolean interfaceExpected,
   808                    boolean checkExtensible) {
   809         if (t.isErroneous())
   810             return t;
   811         if (t.hasTag(TYPEVAR) && !classExpected && !interfaceExpected) {
   812             // check that type variable is already visible
   813             if (t.getUpperBound() == null) {
   814                 log.error(tree.pos(), "illegal.forward.ref");
   815                 return types.createErrorType(t);
   816             }
   817         } else {
   818             t = chk.checkClassType(tree.pos(), t, checkExtensible|!allowGenerics);
   819         }
   820         if (interfaceExpected && (t.tsym.flags() & INTERFACE) == 0) {
   821             log.error(tree.pos(), "intf.expected.here");
   822             // return errType is necessary since otherwise there might
   823             // be undetected cycles which cause attribution to loop
   824             return types.createErrorType(t);
   825         } else if (checkExtensible &&
   826                    classExpected &&
   827                    (t.tsym.flags() & INTERFACE) != 0) {
   828                 log.error(tree.pos(), "no.intf.expected.here");
   829             return types.createErrorType(t);
   830         }
   831         if (checkExtensible &&
   832             ((t.tsym.flags() & FINAL) != 0)) {
   833             log.error(tree.pos(),
   834                       "cant.inherit.from.final", t.tsym);
   835         }
   836         chk.checkNonCyclic(tree.pos(), t);
   837         return t;
   838     }
   840     Type attribIdentAsEnumType(Env<AttrContext> env, JCIdent id) {
   841         Assert.check((env.enclClass.sym.flags() & ENUM) != 0);
   842         id.type = env.info.scope.owner.type;
   843         id.sym = env.info.scope.owner;
   844         return id.type;
   845     }
   847     public void visitClassDef(JCClassDecl tree) {
   848         // Local classes have not been entered yet, so we need to do it now:
   849         if ((env.info.scope.owner.kind & (VAR | MTH)) != 0)
   850             enter.classEnter(tree, env);
   852         ClassSymbol c = tree.sym;
   853         if (c == null) {
   854             // exit in case something drastic went wrong during enter.
   855             result = null;
   856         } else {
   857             // make sure class has been completed:
   858             c.complete();
   860             // If this class appears as an anonymous class
   861             // in a superclass constructor call where
   862             // no explicit outer instance is given,
   863             // disable implicit outer instance from being passed.
   864             // (This would be an illegal access to "this before super").
   865             if (env.info.isSelfCall &&
   866                 env.tree.hasTag(NEWCLASS) &&
   867                 ((JCNewClass) env.tree).encl == null)
   868             {
   869                 c.flags_field |= NOOUTERTHIS;
   870             }
   871             attribClass(tree.pos(), c);
   872             result = tree.type = c.type;
   873         }
   874     }
   876     public void visitMethodDef(JCMethodDecl tree) {
   877         MethodSymbol m = tree.sym;
   878         boolean isDefaultMethod = (m.flags() & DEFAULT) != 0;
   880         Lint lint = env.info.lint.augment(m);
   881         Lint prevLint = chk.setLint(lint);
   882         MethodSymbol prevMethod = chk.setMethod(m);
   883         try {
   884             deferredLintHandler.flush(tree.pos());
   885             chk.checkDeprecatedAnnotation(tree.pos(), m);
   888             // Create a new environment with local scope
   889             // for attributing the method.
   890             Env<AttrContext> localEnv = memberEnter.methodEnv(tree, env);
   891             localEnv.info.lint = lint;
   893             attribStats(tree.typarams, localEnv);
   895             // If we override any other methods, check that we do so properly.
   896             // JLS ???
   897             if (m.isStatic()) {
   898                 chk.checkHideClashes(tree.pos(), env.enclClass.type, m);
   899             } else {
   900                 chk.checkOverrideClashes(tree.pos(), env.enclClass.type, m);
   901             }
   902             chk.checkOverride(tree, m);
   904             if (isDefaultMethod && types.overridesObjectMethod(m.enclClass(), m)) {
   905                 log.error(tree, "default.overrides.object.member", m.name, Kinds.kindName(m.location()), m.location());
   906             }
   908             // Enter all type parameters into the local method scope.
   909             for (List<JCTypeParameter> l = tree.typarams; l.nonEmpty(); l = l.tail)
   910                 localEnv.info.scope.enterIfAbsent(l.head.type.tsym);
   912             ClassSymbol owner = env.enclClass.sym;
   913             if ((owner.flags() & ANNOTATION) != 0 &&
   914                 tree.params.nonEmpty())
   915                 log.error(tree.params.head.pos(),
   916                           "intf.annotation.members.cant.have.params");
   918             // Attribute all value parameters.
   919             for (List<JCVariableDecl> l = tree.params; l.nonEmpty(); l = l.tail) {
   920                 attribStat(l.head, localEnv);
   921             }
   923             chk.checkVarargsMethodDecl(localEnv, tree);
   925             // Check that type parameters are well-formed.
   926             chk.validate(tree.typarams, localEnv);
   928             // Check that result type is well-formed.
   929             chk.validate(tree.restype, localEnv);
   931             // Check that receiver type is well-formed.
   932             if (tree.recvparam != null) {
   933                 // Use a new environment to check the receiver parameter.
   934                 // Otherwise I get "might not have been initialized" errors.
   935                 // Is there a better way?
   936                 Env<AttrContext> newEnv = memberEnter.methodEnv(tree, env);
   937                 attribType(tree.recvparam, newEnv);
   938                 chk.validate(tree.recvparam, newEnv);
   939             }
   941             // annotation method checks
   942             if ((owner.flags() & ANNOTATION) != 0) {
   943                 // annotation method cannot have throws clause
   944                 if (tree.thrown.nonEmpty()) {
   945                     log.error(tree.thrown.head.pos(),
   946                             "throws.not.allowed.in.intf.annotation");
   947                 }
   948                 // annotation method cannot declare type-parameters
   949                 if (tree.typarams.nonEmpty()) {
   950                     log.error(tree.typarams.head.pos(),
   951                             "intf.annotation.members.cant.have.type.params");
   952                 }
   953                 // validate annotation method's return type (could be an annotation type)
   954                 chk.validateAnnotationType(tree.restype);
   955                 // ensure that annotation method does not clash with members of Object/Annotation
   956                 chk.validateAnnotationMethod(tree.pos(), m);
   958                 if (tree.defaultValue != null) {
   959                     // if default value is an annotation, check it is a well-formed
   960                     // annotation value (e.g. no duplicate values, no missing values, etc.)
   961                     chk.validateAnnotationTree(tree.defaultValue);
   962                 }
   963             }
   965             for (List<JCExpression> l = tree.thrown; l.nonEmpty(); l = l.tail)
   966                 chk.checkType(l.head.pos(), l.head.type, syms.throwableType);
   968             if (tree.body == null) {
   969                 // Empty bodies are only allowed for
   970                 // abstract, native, or interface methods, or for methods
   971                 // in a retrofit signature class.
   972                 if (isDefaultMethod || (tree.sym.flags() & (ABSTRACT | NATIVE)) == 0 &&
   973                     !relax)
   974                     log.error(tree.pos(), "missing.meth.body.or.decl.abstract");
   975                 if (tree.defaultValue != null) {
   976                     if ((owner.flags() & ANNOTATION) == 0)
   977                         log.error(tree.pos(),
   978                                   "default.allowed.in.intf.annotation.member");
   979                 }
   980             } else if ((tree.sym.flags() & ABSTRACT) != 0 && !isDefaultMethod) {
   981                 if ((owner.flags() & INTERFACE) != 0) {
   982                     log.error(tree.body.pos(), "intf.meth.cant.have.body");
   983                 } else {
   984                     log.error(tree.pos(), "abstract.meth.cant.have.body");
   985                 }
   986             } else if ((tree.mods.flags & NATIVE) != 0) {
   987                 log.error(tree.pos(), "native.meth.cant.have.body");
   988             } else {
   989                 // Add an implicit super() call unless an explicit call to
   990                 // super(...) or this(...) is given
   991                 // or we are compiling class java.lang.Object.
   992                 if (tree.name == names.init && owner.type != syms.objectType) {
   993                     JCBlock body = tree.body;
   994                     if (body.stats.isEmpty() ||
   995                         !TreeInfo.isSelfCall(body.stats.head)) {
   996                         body.stats = body.stats.
   997                             prepend(memberEnter.SuperCall(make.at(body.pos),
   998                                                           List.<Type>nil(),
   999                                                           List.<JCVariableDecl>nil(),
  1000                                                           false));
  1001                     } else if ((env.enclClass.sym.flags() & ENUM) != 0 &&
  1002                                (tree.mods.flags & GENERATEDCONSTR) == 0 &&
  1003                                TreeInfo.isSuperCall(body.stats.head)) {
  1004                         // enum constructors are not allowed to call super
  1005                         // directly, so make sure there aren't any super calls
  1006                         // in enum constructors, except in the compiler
  1007                         // generated one.
  1008                         log.error(tree.body.stats.head.pos(),
  1009                                   "call.to.super.not.allowed.in.enum.ctor",
  1010                                   env.enclClass.sym);
  1014                 // Attribute all type annotations in the body
  1015                 memberEnter.typeAnnotate(tree.body, localEnv, m);
  1016                 annotate.flush();
  1018                 // Attribute method body.
  1019                 attribStat(tree.body, localEnv);
  1022             localEnv.info.scope.leave();
  1023             result = tree.type = m.type;
  1024             chk.validateAnnotations(tree.mods.annotations, m);
  1026         finally {
  1027             chk.setLint(prevLint);
  1028             chk.setMethod(prevMethod);
  1032     public void visitVarDef(JCVariableDecl tree) {
  1033         // Local variables have not been entered yet, so we need to do it now:
  1034         if (env.info.scope.owner.kind == MTH) {
  1035             if (tree.sym != null) {
  1036                 // parameters have already been entered
  1037                 env.info.scope.enter(tree.sym);
  1038             } else {
  1039                 memberEnter.memberEnter(tree, env);
  1040                 annotate.flush();
  1042         } else {
  1043             if (tree.init != null) {
  1044                 // Field initializer expression need to be entered.
  1045                 memberEnter.typeAnnotate(tree.init, env, tree.sym);
  1046                 annotate.flush();
  1050         VarSymbol v = tree.sym;
  1051         Lint lint = env.info.lint.augment(v);
  1052         Lint prevLint = chk.setLint(lint);
  1054         // Check that the variable's declared type is well-formed.
  1055         boolean isImplicitLambdaParameter = env.tree.hasTag(LAMBDA) &&
  1056                 ((JCLambda)env.tree).paramKind == JCLambda.ParameterKind.IMPLICIT &&
  1057                 (tree.sym.flags() & PARAMETER) != 0;
  1058         chk.validate(tree.vartype, env, !isImplicitLambdaParameter);
  1059         deferredLintHandler.flush(tree.pos());
  1061         try {
  1062             chk.checkDeprecatedAnnotation(tree.pos(), v);
  1064             if (tree.init != null) {
  1065                 if ((v.flags_field & FINAL) != 0 &&
  1066                         !tree.init.hasTag(NEWCLASS) &&
  1067                         !tree.init.hasTag(LAMBDA) &&
  1068                         !tree.init.hasTag(REFERENCE)) {
  1069                     // In this case, `v' is final.  Ensure that it's initializer is
  1070                     // evaluated.
  1071                     v.getConstValue(); // ensure initializer is evaluated
  1072                 } else {
  1073                     // Attribute initializer in a new environment
  1074                     // with the declared variable as owner.
  1075                     // Check that initializer conforms to variable's declared type.
  1076                     Env<AttrContext> initEnv = memberEnter.initEnv(tree, env);
  1077                     initEnv.info.lint = lint;
  1078                     // In order to catch self-references, we set the variable's
  1079                     // declaration position to maximal possible value, effectively
  1080                     // marking the variable as undefined.
  1081                     initEnv.info.enclVar = v;
  1082                     attribExpr(tree.init, initEnv, v.type);
  1085             result = tree.type = v.type;
  1086             chk.validateAnnotations(tree.mods.annotations, v);
  1088         finally {
  1089             chk.setLint(prevLint);
  1093     public void visitSkip(JCSkip tree) {
  1094         result = null;
  1097     public void visitBlock(JCBlock tree) {
  1098         if (env.info.scope.owner.kind == TYP) {
  1099             // Block is a static or instance initializer;
  1100             // let the owner of the environment be a freshly
  1101             // created BLOCK-method.
  1102             Env<AttrContext> localEnv =
  1103                 env.dup(tree, env.info.dup(env.info.scope.dupUnshared()));
  1104             localEnv.info.scope.owner =
  1105                 new MethodSymbol(tree.flags | BLOCK |
  1106                     env.info.scope.owner.flags() & STRICTFP, names.empty, null,
  1107                     env.info.scope.owner);
  1108             if ((tree.flags & STATIC) != 0) localEnv.info.staticLevel++;
  1110             // Attribute all type annotations in the block
  1111             memberEnter.typeAnnotate(tree, localEnv, localEnv.info.scope.owner);
  1112             annotate.flush();
  1115                 // Store init and clinit type annotations with the ClassSymbol
  1116                 // to allow output in Gen.normalizeDefs.
  1117                 ClassSymbol cs = (ClassSymbol)env.info.scope.owner;
  1118                 List<Attribute.TypeCompound> tas = localEnv.info.scope.owner.getRawTypeAttributes();
  1119                 if ((tree.flags & STATIC) != 0) {
  1120                     cs.appendClassInitTypeAttributes(tas);
  1121                 } else {
  1122                     cs.appendInitTypeAttributes(tas);
  1126             attribStats(tree.stats, localEnv);
  1127         } else {
  1128             // Create a new local environment with a local scope.
  1129             Env<AttrContext> localEnv =
  1130                 env.dup(tree, env.info.dup(env.info.scope.dup()));
  1131             try {
  1132                 attribStats(tree.stats, localEnv);
  1133             } finally {
  1134                 localEnv.info.scope.leave();
  1137         result = null;
  1140     public void visitDoLoop(JCDoWhileLoop tree) {
  1141         attribStat(tree.body, env.dup(tree));
  1142         attribExpr(tree.cond, env, syms.booleanType);
  1143         result = null;
  1146     public void visitWhileLoop(JCWhileLoop tree) {
  1147         attribExpr(tree.cond, env, syms.booleanType);
  1148         attribStat(tree.body, env.dup(tree));
  1149         result = null;
  1152     public void visitForLoop(JCForLoop tree) {
  1153         Env<AttrContext> loopEnv =
  1154             env.dup(env.tree, env.info.dup(env.info.scope.dup()));
  1155         try {
  1156             attribStats(tree.init, loopEnv);
  1157             if (tree.cond != null) attribExpr(tree.cond, loopEnv, syms.booleanType);
  1158             loopEnv.tree = tree; // before, we were not in loop!
  1159             attribStats(tree.step, loopEnv);
  1160             attribStat(tree.body, loopEnv);
  1161             result = null;
  1163         finally {
  1164             loopEnv.info.scope.leave();
  1168     public void visitForeachLoop(JCEnhancedForLoop tree) {
  1169         Env<AttrContext> loopEnv =
  1170             env.dup(env.tree, env.info.dup(env.info.scope.dup()));
  1171         try {
  1172             //the Formal Parameter of a for-each loop is not in the scope when
  1173             //attributing the for-each expression; we mimick this by attributing
  1174             //the for-each expression first (against original scope).
  1175             Type exprType = types.upperBound(attribExpr(tree.expr, loopEnv));
  1176             attribStat(tree.var, loopEnv);
  1177             chk.checkNonVoid(tree.pos(), exprType);
  1178             Type elemtype = types.elemtype(exprType); // perhaps expr is an array?
  1179             if (elemtype == null) {
  1180                 // or perhaps expr implements Iterable<T>?
  1181                 Type base = types.asSuper(exprType, syms.iterableType.tsym);
  1182                 if (base == null) {
  1183                     log.error(tree.expr.pos(),
  1184                             "foreach.not.applicable.to.type",
  1185                             exprType,
  1186                             diags.fragment("type.req.array.or.iterable"));
  1187                     elemtype = types.createErrorType(exprType);
  1188                 } else {
  1189                     List<Type> iterableParams = base.allparams();
  1190                     elemtype = iterableParams.isEmpty()
  1191                         ? syms.objectType
  1192                         : types.upperBound(iterableParams.head);
  1195             chk.checkType(tree.expr.pos(), elemtype, tree.var.sym.type);
  1196             loopEnv.tree = tree; // before, we were not in loop!
  1197             attribStat(tree.body, loopEnv);
  1198             result = null;
  1200         finally {
  1201             loopEnv.info.scope.leave();
  1205     public void visitLabelled(JCLabeledStatement tree) {
  1206         // Check that label is not used in an enclosing statement
  1207         Env<AttrContext> env1 = env;
  1208         while (env1 != null && !env1.tree.hasTag(CLASSDEF)) {
  1209             if (env1.tree.hasTag(LABELLED) &&
  1210                 ((JCLabeledStatement) env1.tree).label == tree.label) {
  1211                 log.error(tree.pos(), "label.already.in.use",
  1212                           tree.label);
  1213                 break;
  1215             env1 = env1.next;
  1218         attribStat(tree.body, env.dup(tree));
  1219         result = null;
  1222     public void visitSwitch(JCSwitch tree) {
  1223         Type seltype = attribExpr(tree.selector, env);
  1225         Env<AttrContext> switchEnv =
  1226             env.dup(tree, env.info.dup(env.info.scope.dup()));
  1228         try {
  1230             boolean enumSwitch =
  1231                 allowEnums &&
  1232                 (seltype.tsym.flags() & Flags.ENUM) != 0;
  1233             boolean stringSwitch = false;
  1234             if (types.isSameType(seltype, syms.stringType)) {
  1235                 if (allowStringsInSwitch) {
  1236                     stringSwitch = true;
  1237                 } else {
  1238                     log.error(tree.selector.pos(), "string.switch.not.supported.in.source", sourceName);
  1241             if (!enumSwitch && !stringSwitch)
  1242                 seltype = chk.checkType(tree.selector.pos(), seltype, syms.intType);
  1244             // Attribute all cases and
  1245             // check that there are no duplicate case labels or default clauses.
  1246             Set<Object> labels = new HashSet<Object>(); // The set of case labels.
  1247             boolean hasDefault = false;      // Is there a default label?
  1248             for (List<JCCase> l = tree.cases; l.nonEmpty(); l = l.tail) {
  1249                 JCCase c = l.head;
  1250                 Env<AttrContext> caseEnv =
  1251                     switchEnv.dup(c, env.info.dup(switchEnv.info.scope.dup()));
  1252                 try {
  1253                     if (c.pat != null) {
  1254                         if (enumSwitch) {
  1255                             Symbol sym = enumConstant(c.pat, seltype);
  1256                             if (sym == null) {
  1257                                 log.error(c.pat.pos(), "enum.label.must.be.unqualified.enum");
  1258                             } else if (!labels.add(sym)) {
  1259                                 log.error(c.pos(), "duplicate.case.label");
  1261                         } else {
  1262                             Type pattype = attribExpr(c.pat, switchEnv, seltype);
  1263                             if (!pattype.hasTag(ERROR)) {
  1264                                 if (pattype.constValue() == null) {
  1265                                     log.error(c.pat.pos(),
  1266                                               (stringSwitch ? "string.const.req" : "const.expr.req"));
  1267                                 } else if (labels.contains(pattype.constValue())) {
  1268                                     log.error(c.pos(), "duplicate.case.label");
  1269                                 } else {
  1270                                     labels.add(pattype.constValue());
  1274                     } else if (hasDefault) {
  1275                         log.error(c.pos(), "duplicate.default.label");
  1276                     } else {
  1277                         hasDefault = true;
  1279                     attribStats(c.stats, caseEnv);
  1280                 } finally {
  1281                     caseEnv.info.scope.leave();
  1282                     addVars(c.stats, switchEnv.info.scope);
  1286             result = null;
  1288         finally {
  1289             switchEnv.info.scope.leave();
  1292     // where
  1293         /** Add any variables defined in stats to the switch scope. */
  1294         private static void addVars(List<JCStatement> stats, Scope switchScope) {
  1295             for (;stats.nonEmpty(); stats = stats.tail) {
  1296                 JCTree stat = stats.head;
  1297                 if (stat.hasTag(VARDEF))
  1298                     switchScope.enter(((JCVariableDecl) stat).sym);
  1301     // where
  1302     /** Return the selected enumeration constant symbol, or null. */
  1303     private Symbol enumConstant(JCTree tree, Type enumType) {
  1304         if (!tree.hasTag(IDENT)) {
  1305             log.error(tree.pos(), "enum.label.must.be.unqualified.enum");
  1306             return syms.errSymbol;
  1308         JCIdent ident = (JCIdent)tree;
  1309         Name name = ident.name;
  1310         for (Scope.Entry e = enumType.tsym.members().lookup(name);
  1311              e.scope != null; e = e.next()) {
  1312             if (e.sym.kind == VAR) {
  1313                 Symbol s = ident.sym = e.sym;
  1314                 ((VarSymbol)s).getConstValue(); // ensure initializer is evaluated
  1315                 ident.type = s.type;
  1316                 return ((s.flags_field & Flags.ENUM) == 0)
  1317                     ? null : s;
  1320         return null;
  1323     public void visitSynchronized(JCSynchronized tree) {
  1324         chk.checkRefType(tree.pos(), attribExpr(tree.lock, env));
  1325         attribStat(tree.body, env);
  1326         result = null;
  1329     public void visitTry(JCTry tree) {
  1330         // Create a new local environment with a local
  1331         Env<AttrContext> localEnv = env.dup(tree, env.info.dup(env.info.scope.dup()));
  1332         try {
  1333             boolean isTryWithResource = tree.resources.nonEmpty();
  1334             // Create a nested environment for attributing the try block if needed
  1335             Env<AttrContext> tryEnv = isTryWithResource ?
  1336                 env.dup(tree, localEnv.info.dup(localEnv.info.scope.dup())) :
  1337                 localEnv;
  1338             try {
  1339                 // Attribute resource declarations
  1340                 for (JCTree resource : tree.resources) {
  1341                     CheckContext twrContext = new Check.NestedCheckContext(resultInfo.checkContext) {
  1342                         @Override
  1343                         public void report(DiagnosticPosition pos, JCDiagnostic details) {
  1344                             chk.basicHandler.report(pos, diags.fragment("try.not.applicable.to.type", details));
  1346                     };
  1347                     ResultInfo twrResult = new ResultInfo(VAL, syms.autoCloseableType, twrContext);
  1348                     if (resource.hasTag(VARDEF)) {
  1349                         attribStat(resource, tryEnv);
  1350                         twrResult.check(resource, resource.type);
  1352                         //check that resource type cannot throw InterruptedException
  1353                         checkAutoCloseable(resource.pos(), localEnv, resource.type);
  1355                         VarSymbol var = ((JCVariableDecl) resource).sym;
  1356                         var.setData(ElementKind.RESOURCE_VARIABLE);
  1357                     } else {
  1358                         attribTree(resource, tryEnv, twrResult);
  1361                 // Attribute body
  1362                 attribStat(tree.body, tryEnv);
  1363             } finally {
  1364                 if (isTryWithResource)
  1365                     tryEnv.info.scope.leave();
  1368             // Attribute catch clauses
  1369             for (List<JCCatch> l = tree.catchers; l.nonEmpty(); l = l.tail) {
  1370                 JCCatch c = l.head;
  1371                 Env<AttrContext> catchEnv =
  1372                     localEnv.dup(c, localEnv.info.dup(localEnv.info.scope.dup()));
  1373                 try {
  1374                     Type ctype = attribStat(c.param, catchEnv);
  1375                     if (TreeInfo.isMultiCatch(c)) {
  1376                         //multi-catch parameter is implicitly marked as final
  1377                         c.param.sym.flags_field |= FINAL | UNION;
  1379                     if (c.param.sym.kind == Kinds.VAR) {
  1380                         c.param.sym.setData(ElementKind.EXCEPTION_PARAMETER);
  1382                     chk.checkType(c.param.vartype.pos(),
  1383                                   chk.checkClassType(c.param.vartype.pos(), ctype),
  1384                                   syms.throwableType);
  1385                     attribStat(c.body, catchEnv);
  1386                 } finally {
  1387                     catchEnv.info.scope.leave();
  1391             // Attribute finalizer
  1392             if (tree.finalizer != null) attribStat(tree.finalizer, localEnv);
  1393             result = null;
  1395         finally {
  1396             localEnv.info.scope.leave();
  1400     void checkAutoCloseable(DiagnosticPosition pos, Env<AttrContext> env, Type resource) {
  1401         if (!resource.isErroneous() &&
  1402             types.asSuper(resource, syms.autoCloseableType.tsym) != null &&
  1403             !types.isSameType(resource, syms.autoCloseableType)) { // Don't emit warning for AutoCloseable itself
  1404             Symbol close = syms.noSymbol;
  1405             Log.DiagnosticHandler discardHandler = new Log.DiscardDiagnosticHandler(log);
  1406             try {
  1407                 close = rs.resolveQualifiedMethod(pos,
  1408                         env,
  1409                         resource,
  1410                         names.close,
  1411                         List.<Type>nil(),
  1412                         List.<Type>nil());
  1414             finally {
  1415                 log.popDiagnosticHandler(discardHandler);
  1417             if (close.kind == MTH &&
  1418                     close.overrides(syms.autoCloseableClose, resource.tsym, types, true) &&
  1419                     chk.isHandled(syms.interruptedExceptionType, types.memberType(resource, close).getThrownTypes()) &&
  1420                     env.info.lint.isEnabled(LintCategory.TRY)) {
  1421                 log.warning(LintCategory.TRY, pos, "try.resource.throws.interrupted.exc", resource);
  1426     public void visitConditional(JCConditional tree) {
  1427         Type condtype = attribExpr(tree.cond, env, syms.booleanType);
  1429         tree.polyKind = (!allowPoly ||
  1430                 pt().hasTag(NONE) && pt() != Type.recoveryType ||
  1431                 isBooleanOrNumeric(env, tree)) ?
  1432                 PolyKind.STANDALONE : PolyKind.POLY;
  1434         if (tree.polyKind == PolyKind.POLY && resultInfo.pt.hasTag(VOID)) {
  1435             //cannot get here (i.e. it means we are returning from void method - which is already an error)
  1436             resultInfo.checkContext.report(tree, diags.fragment("conditional.target.cant.be.void"));
  1437             result = tree.type = types.createErrorType(resultInfo.pt);
  1438             return;
  1441         ResultInfo condInfo = tree.polyKind == PolyKind.STANDALONE ?
  1442                 unknownExprInfo :
  1443                 resultInfo.dup(new Check.NestedCheckContext(resultInfo.checkContext) {
  1444                     //this will use enclosing check context to check compatibility of
  1445                     //subexpression against target type; if we are in a method check context,
  1446                     //depending on whether boxing is allowed, we could have incompatibilities
  1447                     @Override
  1448                     public void report(DiagnosticPosition pos, JCDiagnostic details) {
  1449                         enclosingContext.report(pos, diags.fragment("incompatible.type.in.conditional", details));
  1451                 });
  1453         Type truetype = attribTree(tree.truepart, env, condInfo);
  1454         Type falsetype = attribTree(tree.falsepart, env, condInfo);
  1456         Type owntype = (tree.polyKind == PolyKind.STANDALONE) ? condType(tree, truetype, falsetype) : pt();
  1457         if (condtype.constValue() != null &&
  1458                 truetype.constValue() != null &&
  1459                 falsetype.constValue() != null &&
  1460                 !owntype.hasTag(NONE)) {
  1461             //constant folding
  1462             owntype = cfolder.coerce(condtype.isTrue() ? truetype : falsetype, owntype);
  1464         result = check(tree, owntype, VAL, resultInfo);
  1466     //where
  1467         private boolean isBooleanOrNumeric(Env<AttrContext> env, JCExpression tree) {
  1468             switch (tree.getTag()) {
  1469                 case LITERAL: return ((JCLiteral)tree).typetag.isSubRangeOf(DOUBLE) ||
  1470                               ((JCLiteral)tree).typetag == BOOLEAN ||
  1471                               ((JCLiteral)tree).typetag == BOT;
  1472                 case LAMBDA: case REFERENCE: return false;
  1473                 case PARENS: return isBooleanOrNumeric(env, ((JCParens)tree).expr);
  1474                 case CONDEXPR:
  1475                     JCConditional condTree = (JCConditional)tree;
  1476                     return isBooleanOrNumeric(env, condTree.truepart) &&
  1477                             isBooleanOrNumeric(env, condTree.falsepart);
  1478                 case APPLY:
  1479                     JCMethodInvocation speculativeMethodTree =
  1480                             (JCMethodInvocation)deferredAttr.attribSpeculative(tree, env, unknownExprInfo);
  1481                     Type owntype = TreeInfo.symbol(speculativeMethodTree.meth).type.getReturnType();
  1482                     return types.unboxedTypeOrType(owntype).isPrimitive();
  1483                 case NEWCLASS:
  1484                     JCExpression className =
  1485                             removeClassParams.translate(((JCNewClass)tree).clazz);
  1486                     JCExpression speculativeNewClassTree =
  1487                             (JCExpression)deferredAttr.attribSpeculative(className, env, unknownTypeInfo);
  1488                     return types.unboxedTypeOrType(speculativeNewClassTree.type).isPrimitive();
  1489                 default:
  1490                     Type speculativeType = deferredAttr.attribSpeculative(tree, env, unknownExprInfo).type;
  1491                     speculativeType = types.unboxedTypeOrType(speculativeType);
  1492                     return speculativeType.isPrimitive();
  1495         //where
  1496             TreeTranslator removeClassParams = new TreeTranslator() {
  1497                 @Override
  1498                 public void visitTypeApply(JCTypeApply tree) {
  1499                     result = translate(tree.clazz);
  1501             };
  1503         /** Compute the type of a conditional expression, after
  1504          *  checking that it exists.  See JLS 15.25. Does not take into
  1505          *  account the special case where condition and both arms
  1506          *  are constants.
  1508          *  @param pos      The source position to be used for error
  1509          *                  diagnostics.
  1510          *  @param thentype The type of the expression's then-part.
  1511          *  @param elsetype The type of the expression's else-part.
  1512          */
  1513         private Type condType(DiagnosticPosition pos,
  1514                                Type thentype, Type elsetype) {
  1515             // If same type, that is the result
  1516             if (types.isSameType(thentype, elsetype))
  1517                 return thentype.baseType();
  1519             Type thenUnboxed = (!allowBoxing || thentype.isPrimitive())
  1520                 ? thentype : types.unboxedType(thentype);
  1521             Type elseUnboxed = (!allowBoxing || elsetype.isPrimitive())
  1522                 ? elsetype : types.unboxedType(elsetype);
  1524             // Otherwise, if both arms can be converted to a numeric
  1525             // type, return the least numeric type that fits both arms
  1526             // (i.e. return larger of the two, or return int if one
  1527             // arm is short, the other is char).
  1528             if (thenUnboxed.isPrimitive() && elseUnboxed.isPrimitive()) {
  1529                 // If one arm has an integer subrange type (i.e., byte,
  1530                 // short, or char), and the other is an integer constant
  1531                 // that fits into the subrange, return the subrange type.
  1532                 if (thenUnboxed.getTag().isStrictSubRangeOf(INT) &&
  1533                     elseUnboxed.hasTag(INT) &&
  1534                     types.isAssignable(elseUnboxed, thenUnboxed)) {
  1535                     return thenUnboxed.baseType();
  1537                 if (elseUnboxed.getTag().isStrictSubRangeOf(INT) &&
  1538                     thenUnboxed.hasTag(INT) &&
  1539                     types.isAssignable(thenUnboxed, elseUnboxed)) {
  1540                     return elseUnboxed.baseType();
  1543                 for (TypeTag tag : primitiveTags) {
  1544                     Type candidate = syms.typeOfTag[tag.ordinal()];
  1545                     if (types.isSubtype(thenUnboxed, candidate) &&
  1546                         types.isSubtype(elseUnboxed, candidate)) {
  1547                         return candidate;
  1552             // Those were all the cases that could result in a primitive
  1553             if (allowBoxing) {
  1554                 if (thentype.isPrimitive())
  1555                     thentype = types.boxedClass(thentype).type;
  1556                 if (elsetype.isPrimitive())
  1557                     elsetype = types.boxedClass(elsetype).type;
  1560             if (types.isSubtype(thentype, elsetype))
  1561                 return elsetype.baseType();
  1562             if (types.isSubtype(elsetype, thentype))
  1563                 return thentype.baseType();
  1565             if (!allowBoxing || thentype.hasTag(VOID) || elsetype.hasTag(VOID)) {
  1566                 log.error(pos, "neither.conditional.subtype",
  1567                           thentype, elsetype);
  1568                 return thentype.baseType();
  1571             // both are known to be reference types.  The result is
  1572             // lub(thentype,elsetype). This cannot fail, as it will
  1573             // always be possible to infer "Object" if nothing better.
  1574             return types.lub(thentype.baseType(), elsetype.baseType());
  1577     final static TypeTag[] primitiveTags = new TypeTag[]{
  1578         BYTE,
  1579         CHAR,
  1580         SHORT,
  1581         INT,
  1582         LONG,
  1583         FLOAT,
  1584         DOUBLE,
  1585         BOOLEAN,
  1586     };
  1588     public void visitIf(JCIf tree) {
  1589         attribExpr(tree.cond, env, syms.booleanType);
  1590         attribStat(tree.thenpart, env);
  1591         if (tree.elsepart != null)
  1592             attribStat(tree.elsepart, env);
  1593         chk.checkEmptyIf(tree);
  1594         result = null;
  1597     public void visitExec(JCExpressionStatement tree) {
  1598         //a fresh environment is required for 292 inference to work properly ---
  1599         //see Infer.instantiatePolymorphicSignatureInstance()
  1600         Env<AttrContext> localEnv = env.dup(tree);
  1601         attribExpr(tree.expr, localEnv);
  1602         result = null;
  1605     public void visitBreak(JCBreak tree) {
  1606         tree.target = findJumpTarget(tree.pos(), tree.getTag(), tree.label, env);
  1607         result = null;
  1610     public void visitContinue(JCContinue tree) {
  1611         tree.target = findJumpTarget(tree.pos(), tree.getTag(), tree.label, env);
  1612         result = null;
  1614     //where
  1615         /** Return the target of a break or continue statement, if it exists,
  1616          *  report an error if not.
  1617          *  Note: The target of a labelled break or continue is the
  1618          *  (non-labelled) statement tree referred to by the label,
  1619          *  not the tree representing the labelled statement itself.
  1621          *  @param pos     The position to be used for error diagnostics
  1622          *  @param tag     The tag of the jump statement. This is either
  1623          *                 Tree.BREAK or Tree.CONTINUE.
  1624          *  @param label   The label of the jump statement, or null if no
  1625          *                 label is given.
  1626          *  @param env     The environment current at the jump statement.
  1627          */
  1628         private JCTree findJumpTarget(DiagnosticPosition pos,
  1629                                     JCTree.Tag tag,
  1630                                     Name label,
  1631                                     Env<AttrContext> env) {
  1632             // Search environments outwards from the point of jump.
  1633             Env<AttrContext> env1 = env;
  1634             LOOP:
  1635             while (env1 != null) {
  1636                 switch (env1.tree.getTag()) {
  1637                     case LABELLED:
  1638                         JCLabeledStatement labelled = (JCLabeledStatement)env1.tree;
  1639                         if (label == labelled.label) {
  1640                             // If jump is a continue, check that target is a loop.
  1641                             if (tag == CONTINUE) {
  1642                                 if (!labelled.body.hasTag(DOLOOP) &&
  1643                                         !labelled.body.hasTag(WHILELOOP) &&
  1644                                         !labelled.body.hasTag(FORLOOP) &&
  1645                                         !labelled.body.hasTag(FOREACHLOOP))
  1646                                     log.error(pos, "not.loop.label", label);
  1647                                 // Found labelled statement target, now go inwards
  1648                                 // to next non-labelled tree.
  1649                                 return TreeInfo.referencedStatement(labelled);
  1650                             } else {
  1651                                 return labelled;
  1654                         break;
  1655                     case DOLOOP:
  1656                     case WHILELOOP:
  1657                     case FORLOOP:
  1658                     case FOREACHLOOP:
  1659                         if (label == null) return env1.tree;
  1660                         break;
  1661                     case SWITCH:
  1662                         if (label == null && tag == BREAK) return env1.tree;
  1663                         break;
  1664                     case LAMBDA:
  1665                     case METHODDEF:
  1666                     case CLASSDEF:
  1667                         break LOOP;
  1668                     default:
  1670                 env1 = env1.next;
  1672             if (label != null)
  1673                 log.error(pos, "undef.label", label);
  1674             else if (tag == CONTINUE)
  1675                 log.error(pos, "cont.outside.loop");
  1676             else
  1677                 log.error(pos, "break.outside.switch.loop");
  1678             return null;
  1681     public void visitReturn(JCReturn tree) {
  1682         // Check that there is an enclosing method which is
  1683         // nested within than the enclosing class.
  1684         if (env.info.returnResult == null) {
  1685             log.error(tree.pos(), "ret.outside.meth");
  1686         } else {
  1687             // Attribute return expression, if it exists, and check that
  1688             // it conforms to result type of enclosing method.
  1689             if (tree.expr != null) {
  1690                 if (env.info.returnResult.pt.hasTag(VOID)) {
  1691                     env.info.returnResult.checkContext.report(tree.expr.pos(),
  1692                               diags.fragment("unexpected.ret.val"));
  1694                 attribTree(tree.expr, env, env.info.returnResult);
  1695             } else if (!env.info.returnResult.pt.hasTag(VOID) &&
  1696                     !env.info.returnResult.pt.hasTag(NONE)) {
  1697                 env.info.returnResult.checkContext.report(tree.pos(),
  1698                               diags.fragment("missing.ret.val"));
  1701         result = null;
  1704     public void visitThrow(JCThrow tree) {
  1705         Type owntype = attribExpr(tree.expr, env, allowPoly ? Type.noType : syms.throwableType);
  1706         if (allowPoly) {
  1707             chk.checkType(tree, owntype, syms.throwableType);
  1709         result = null;
  1712     public void visitAssert(JCAssert tree) {
  1713         attribExpr(tree.cond, env, syms.booleanType);
  1714         if (tree.detail != null) {
  1715             chk.checkNonVoid(tree.detail.pos(), attribExpr(tree.detail, env));
  1717         result = null;
  1720      /** Visitor method for method invocations.
  1721      *  NOTE: The method part of an application will have in its type field
  1722      *        the return type of the method, not the method's type itself!
  1723      */
  1724     public void visitApply(JCMethodInvocation tree) {
  1725         // The local environment of a method application is
  1726         // a new environment nested in the current one.
  1727         Env<AttrContext> localEnv = env.dup(tree, env.info.dup());
  1729         // The types of the actual method arguments.
  1730         List<Type> argtypes;
  1732         // The types of the actual method type arguments.
  1733         List<Type> typeargtypes = null;
  1735         Name methName = TreeInfo.name(tree.meth);
  1737         boolean isConstructorCall =
  1738             methName == names._this || methName == names._super;
  1740         ListBuffer<Type> argtypesBuf = ListBuffer.lb();
  1741         if (isConstructorCall) {
  1742             // We are seeing a ...this(...) or ...super(...) call.
  1743             // Check that this is the first statement in a constructor.
  1744             if (checkFirstConstructorStat(tree, env)) {
  1746                 // Record the fact
  1747                 // that this is a constructor call (using isSelfCall).
  1748                 localEnv.info.isSelfCall = true;
  1750                 // Attribute arguments, yielding list of argument types.
  1751                 attribArgs(tree.args, localEnv, argtypesBuf);
  1752                 argtypes = argtypesBuf.toList();
  1753                 typeargtypes = attribTypes(tree.typeargs, localEnv);
  1755                 // Variable `site' points to the class in which the called
  1756                 // constructor is defined.
  1757                 Type site = env.enclClass.sym.type;
  1758                 if (methName == names._super) {
  1759                     if (site == syms.objectType) {
  1760                         log.error(tree.meth.pos(), "no.superclass", site);
  1761                         site = types.createErrorType(syms.objectType);
  1762                     } else {
  1763                         site = types.supertype(site);
  1767                 if (site.hasTag(CLASS)) {
  1768                     Type encl = site.getEnclosingType();
  1769                     while (encl != null && encl.hasTag(TYPEVAR))
  1770                         encl = encl.getUpperBound();
  1771                     if (encl.hasTag(CLASS)) {
  1772                         // we are calling a nested class
  1774                         if (tree.meth.hasTag(SELECT)) {
  1775                             JCTree qualifier = ((JCFieldAccess) tree.meth).selected;
  1777                             // We are seeing a prefixed call, of the form
  1778                             //     <expr>.super(...).
  1779                             // Check that the prefix expression conforms
  1780                             // to the outer instance type of the class.
  1781                             chk.checkRefType(qualifier.pos(),
  1782                                              attribExpr(qualifier, localEnv,
  1783                                                         encl));
  1784                         } else if (methName == names._super) {
  1785                             // qualifier omitted; check for existence
  1786                             // of an appropriate implicit qualifier.
  1787                             rs.resolveImplicitThis(tree.meth.pos(),
  1788                                                    localEnv, site, true);
  1790                     } else if (tree.meth.hasTag(SELECT)) {
  1791                         log.error(tree.meth.pos(), "illegal.qual.not.icls",
  1792                                   site.tsym);
  1795                     // if we're calling a java.lang.Enum constructor,
  1796                     // prefix the implicit String and int parameters
  1797                     if (site.tsym == syms.enumSym && allowEnums)
  1798                         argtypes = argtypes.prepend(syms.intType).prepend(syms.stringType);
  1800                     // Resolve the called constructor under the assumption
  1801                     // that we are referring to a superclass instance of the
  1802                     // current instance (JLS ???).
  1803                     boolean selectSuperPrev = localEnv.info.selectSuper;
  1804                     localEnv.info.selectSuper = true;
  1805                     localEnv.info.pendingResolutionPhase = null;
  1806                     Symbol sym = rs.resolveConstructor(
  1807                         tree.meth.pos(), localEnv, site, argtypes, typeargtypes);
  1808                     localEnv.info.selectSuper = selectSuperPrev;
  1810                     // Set method symbol to resolved constructor...
  1811                     TreeInfo.setSymbol(tree.meth, sym);
  1813                     // ...and check that it is legal in the current context.
  1814                     // (this will also set the tree's type)
  1815                     Type mpt = newMethodTemplate(resultInfo.pt, argtypes, typeargtypes);
  1816                     checkId(tree.meth, site, sym, localEnv, new ResultInfo(MTH, mpt));
  1818                 // Otherwise, `site' is an error type and we do nothing
  1820             result = tree.type = syms.voidType;
  1821         } else {
  1822             // Otherwise, we are seeing a regular method call.
  1823             // Attribute the arguments, yielding list of argument types, ...
  1824             int kind = attribArgs(tree.args, localEnv, argtypesBuf);
  1825             argtypes = argtypesBuf.toList();
  1826             typeargtypes = attribAnyTypes(tree.typeargs, localEnv);
  1828             // ... and attribute the method using as a prototype a methodtype
  1829             // whose formal argument types is exactly the list of actual
  1830             // arguments (this will also set the method symbol).
  1831             Type mpt = newMethodTemplate(resultInfo.pt, argtypes, typeargtypes);
  1832             localEnv.info.pendingResolutionPhase = null;
  1833             Type mtype = attribTree(tree.meth, localEnv, new ResultInfo(kind, mpt, resultInfo.checkContext));
  1835             // Compute the result type.
  1836             Type restype = mtype.getReturnType();
  1837             if (restype.hasTag(WILDCARD))
  1838                 throw new AssertionError(mtype);
  1840             Type qualifier = (tree.meth.hasTag(SELECT))
  1841                     ? ((JCFieldAccess) tree.meth).selected.type
  1842                     : env.enclClass.sym.type;
  1843             restype = adjustMethodReturnType(qualifier, methName, argtypes, restype);
  1845             chk.checkRefTypes(tree.typeargs, typeargtypes);
  1847             // Check that value of resulting type is admissible in the
  1848             // current context.  Also, capture the return type
  1849             result = check(tree, capture(restype), VAL, resultInfo);
  1851         chk.validate(tree.typeargs, localEnv);
  1853     //where
  1854         Type adjustMethodReturnType(Type qualifierType, Name methodName, List<Type> argtypes, Type restype) {
  1855             if (allowCovariantReturns &&
  1856                     methodName == names.clone &&
  1857                 types.isArray(qualifierType)) {
  1858                 // as a special case, array.clone() has a result that is
  1859                 // the same as static type of the array being cloned
  1860                 return qualifierType;
  1861             } else if (allowGenerics &&
  1862                     methodName == names.getClass &&
  1863                     argtypes.isEmpty()) {
  1864                 // as a special case, x.getClass() has type Class<? extends |X|>
  1865                 return new ClassType(restype.getEnclosingType(),
  1866                               List.<Type>of(new WildcardType(types.erasure(qualifierType),
  1867                                                                BoundKind.EXTENDS,
  1868                                                                syms.boundClass)),
  1869                               restype.tsym);
  1870             } else {
  1871                 return restype;
  1875         /** Check that given application node appears as first statement
  1876          *  in a constructor call.
  1877          *  @param tree   The application node
  1878          *  @param env    The environment current at the application.
  1879          */
  1880         boolean checkFirstConstructorStat(JCMethodInvocation tree, Env<AttrContext> env) {
  1881             JCMethodDecl enclMethod = env.enclMethod;
  1882             if (enclMethod != null && enclMethod.name == names.init) {
  1883                 JCBlock body = enclMethod.body;
  1884                 if (body.stats.head.hasTag(EXEC) &&
  1885                     ((JCExpressionStatement) body.stats.head).expr == tree)
  1886                     return true;
  1888             log.error(tree.pos(),"call.must.be.first.stmt.in.ctor",
  1889                       TreeInfo.name(tree.meth));
  1890             return false;
  1893         /** Obtain a method type with given argument types.
  1894          */
  1895         Type newMethodTemplate(Type restype, List<Type> argtypes, List<Type> typeargtypes) {
  1896             MethodType mt = new MethodType(argtypes, restype, List.<Type>nil(), syms.methodClass);
  1897             return (typeargtypes == null) ? mt : (Type)new ForAll(typeargtypes, mt);
  1900     public void visitNewClass(final JCNewClass tree) {
  1901         Type owntype = types.createErrorType(tree.type);
  1903         // The local environment of a class creation is
  1904         // a new environment nested in the current one.
  1905         Env<AttrContext> localEnv = env.dup(tree, env.info.dup());
  1907         // The anonymous inner class definition of the new expression,
  1908         // if one is defined by it.
  1909         JCClassDecl cdef = tree.def;
  1911         // If enclosing class is given, attribute it, and
  1912         // complete class name to be fully qualified
  1913         JCExpression clazz = tree.clazz; // Class field following new
  1914         JCExpression clazzid;            // Identifier in class field
  1915         JCAnnotatedType annoclazzid;     // Annotated type enclosing clazzid
  1916         annoclazzid = null;
  1918         if (clazz.hasTag(TYPEAPPLY)) {
  1919             clazzid = ((JCTypeApply) clazz).clazz;
  1920             if (clazzid.hasTag(ANNOTATED_TYPE)) {
  1921                 annoclazzid = (JCAnnotatedType) clazzid;
  1922                 clazzid = annoclazzid.underlyingType;
  1924         } else {
  1925             if (clazz.hasTag(ANNOTATED_TYPE)) {
  1926                 annoclazzid = (JCAnnotatedType) clazz;
  1927                 clazzid = annoclazzid.underlyingType;
  1928             } else {
  1929                 clazzid = clazz;
  1933         JCExpression clazzid1 = clazzid; // The same in fully qualified form
  1935         if (tree.encl != null) {
  1936             // We are seeing a qualified new, of the form
  1937             //    <expr>.new C <...> (...) ...
  1938             // In this case, we let clazz stand for the name of the
  1939             // allocated class C prefixed with the type of the qualifier
  1940             // expression, so that we can
  1941             // resolve it with standard techniques later. I.e., if
  1942             // <expr> has type T, then <expr>.new C <...> (...)
  1943             // yields a clazz T.C.
  1944             Type encltype = chk.checkRefType(tree.encl.pos(),
  1945                                              attribExpr(tree.encl, env));
  1946             // TODO 308: in <expr>.new C, do we also want to add the type annotations
  1947             // from expr to the combined type, or not? Yes, do this.
  1948             clazzid1 = make.at(clazz.pos).Select(make.Type(encltype),
  1949                                                  ((JCIdent) clazzid).name);
  1951             if (clazz.hasTag(ANNOTATED_TYPE)) {
  1952                 JCAnnotatedType annoType = (JCAnnotatedType) clazz;
  1953                 List<JCAnnotation> annos = annoType.annotations;
  1955                 if (annoType.underlyingType.hasTag(TYPEAPPLY)) {
  1956                     clazzid1 = make.at(tree.pos).
  1957                         TypeApply(clazzid1,
  1958                                   ((JCTypeApply) clazz).arguments);
  1961                 clazzid1 = make.at(tree.pos).
  1962                     AnnotatedType(annos, clazzid1);
  1963             } else if (clazz.hasTag(TYPEAPPLY)) {
  1964                 clazzid1 = make.at(tree.pos).
  1965                     TypeApply(clazzid1,
  1966                               ((JCTypeApply) clazz).arguments);
  1969             clazz = clazzid1;
  1972         // Attribute clazz expression and store
  1973         // symbol + type back into the attributed tree.
  1974         Type clazztype = TreeInfo.isEnumInit(env.tree) ?
  1975             attribIdentAsEnumType(env, (JCIdent)clazz) :
  1976             attribType(clazz, env);
  1978         clazztype = chk.checkDiamond(tree, clazztype);
  1979         chk.validate(clazz, localEnv);
  1980         if (tree.encl != null) {
  1981             // We have to work in this case to store
  1982             // symbol + type back into the attributed tree.
  1983             tree.clazz.type = clazztype;
  1984             TreeInfo.setSymbol(clazzid, TreeInfo.symbol(clazzid1));
  1985             clazzid.type = ((JCIdent) clazzid).sym.type;
  1986             if (annoclazzid != null) {
  1987                 annoclazzid.type = clazzid.type;
  1989             if (!clazztype.isErroneous()) {
  1990                 if (cdef != null && clazztype.tsym.isInterface()) {
  1991                     log.error(tree.encl.pos(), "anon.class.impl.intf.no.qual.for.new");
  1992                 } else if (clazztype.tsym.isStatic()) {
  1993                     log.error(tree.encl.pos(), "qualified.new.of.static.class", clazztype.tsym);
  1996         } else if (!clazztype.tsym.isInterface() &&
  1997                    clazztype.getEnclosingType().hasTag(CLASS)) {
  1998             // Check for the existence of an apropos outer instance
  1999             rs.resolveImplicitThis(tree.pos(), env, clazztype);
  2002         // Attribute constructor arguments.
  2003         ListBuffer<Type> argtypesBuf = ListBuffer.lb();
  2004         int pkind = attribArgs(tree.args, localEnv, argtypesBuf);
  2005         List<Type> argtypes = argtypesBuf.toList();
  2006         List<Type> typeargtypes = attribTypes(tree.typeargs, localEnv);
  2008         // If we have made no mistakes in the class type...
  2009         if (clazztype.hasTag(CLASS)) {
  2010             // Enums may not be instantiated except implicitly
  2011             if (allowEnums &&
  2012                 (clazztype.tsym.flags_field&Flags.ENUM) != 0 &&
  2013                 (!env.tree.hasTag(VARDEF) ||
  2014                  (((JCVariableDecl) env.tree).mods.flags&Flags.ENUM) == 0 ||
  2015                  ((JCVariableDecl) env.tree).init != tree))
  2016                 log.error(tree.pos(), "enum.cant.be.instantiated");
  2017             // Check that class is not abstract
  2018             if (cdef == null &&
  2019                 (clazztype.tsym.flags() & (ABSTRACT | INTERFACE)) != 0) {
  2020                 log.error(tree.pos(), "abstract.cant.be.instantiated",
  2021                           clazztype.tsym);
  2022             } else if (cdef != null && clazztype.tsym.isInterface()) {
  2023                 // Check that no constructor arguments are given to
  2024                 // anonymous classes implementing an interface
  2025                 if (!argtypes.isEmpty())
  2026                     log.error(tree.args.head.pos(), "anon.class.impl.intf.no.args");
  2028                 if (!typeargtypes.isEmpty())
  2029                     log.error(tree.typeargs.head.pos(), "anon.class.impl.intf.no.typeargs");
  2031                 // Error recovery: pretend no arguments were supplied.
  2032                 argtypes = List.nil();
  2033                 typeargtypes = List.nil();
  2034             } else if (TreeInfo.isDiamond(tree)) {
  2035                 ClassType site = new ClassType(clazztype.getEnclosingType(),
  2036                             clazztype.tsym.type.getTypeArguments(),
  2037                             clazztype.tsym);
  2039                 Env<AttrContext> diamondEnv = localEnv.dup(tree);
  2040                 diamondEnv.info.selectSuper = cdef != null;
  2041                 diamondEnv.info.pendingResolutionPhase = null;
  2043                 //if the type of the instance creation expression is a class type
  2044                 //apply method resolution inference (JLS 15.12.2.7). The return type
  2045                 //of the resolved constructor will be a partially instantiated type
  2046                 Symbol constructor = rs.resolveDiamond(tree.pos(),
  2047                             diamondEnv,
  2048                             site,
  2049                             argtypes,
  2050                             typeargtypes);
  2051                 tree.constructor = constructor.baseSymbol();
  2053                 final TypeSymbol csym = clazztype.tsym;
  2054                 ResultInfo diamondResult = new ResultInfo(MTH, newMethodTemplate(resultInfo.pt, argtypes, typeargtypes), new Check.NestedCheckContext(resultInfo.checkContext) {
  2055                     @Override
  2056                     public void report(DiagnosticPosition _unused, JCDiagnostic details) {
  2057                         enclosingContext.report(tree.clazz,
  2058                                 diags.fragment("cant.apply.diamond.1", diags.fragment("diamond", csym), details));
  2060                 });
  2061                 Type constructorType = tree.constructorType = types.createErrorType(clazztype);
  2062                 constructorType = checkId(tree, site,
  2063                         constructor,
  2064                         diamondEnv,
  2065                         diamondResult);
  2067                 tree.clazz.type = types.createErrorType(clazztype);
  2068                 if (!constructorType.isErroneous()) {
  2069                     tree.clazz.type = clazztype = constructorType.getReturnType();
  2070                     tree.constructorType = types.createMethodTypeWithReturn(constructorType, syms.voidType);
  2072                 clazztype = chk.checkClassType(tree.clazz, tree.clazz.type, true);
  2075             // Resolve the called constructor under the assumption
  2076             // that we are referring to a superclass instance of the
  2077             // current instance (JLS ???).
  2078             else {
  2079                 //the following code alters some of the fields in the current
  2080                 //AttrContext - hence, the current context must be dup'ed in
  2081                 //order to avoid downstream failures
  2082                 Env<AttrContext> rsEnv = localEnv.dup(tree);
  2083                 rsEnv.info.selectSuper = cdef != null;
  2084                 rsEnv.info.pendingResolutionPhase = null;
  2085                 tree.constructor = rs.resolveConstructor(
  2086                     tree.pos(), rsEnv, clazztype, argtypes, typeargtypes);
  2087                 if (cdef == null) { //do not check twice!
  2088                     tree.constructorType = checkId(tree,
  2089                             clazztype,
  2090                             tree.constructor,
  2091                             rsEnv,
  2092                             new ResultInfo(pkind, newMethodTemplate(syms.voidType, argtypes, typeargtypes)));
  2093                     if (rsEnv.info.lastResolveVarargs())
  2094                         Assert.check(tree.constructorType.isErroneous() || tree.varargsElement != null);
  2096                 if (cdef == null &&
  2097                         !clazztype.isErroneous() &&
  2098                         clazztype.getTypeArguments().nonEmpty() &&
  2099                         findDiamonds) {
  2100                     findDiamond(localEnv, tree, clazztype);
  2104             if (cdef != null) {
  2105                 // We are seeing an anonymous class instance creation.
  2106                 // In this case, the class instance creation
  2107                 // expression
  2108                 //
  2109                 //    E.new <typeargs1>C<typargs2>(args) { ... }
  2110                 //
  2111                 // is represented internally as
  2112                 //
  2113                 //    E . new <typeargs1>C<typargs2>(args) ( class <empty-name> { ... } )  .
  2114                 //
  2115                 // This expression is then *transformed* as follows:
  2116                 //
  2117                 // (1) add a STATIC flag to the class definition
  2118                 //     if the current environment is static
  2119                 // (2) add an extends or implements clause
  2120                 // (3) add a constructor.
  2121                 //
  2122                 // For instance, if C is a class, and ET is the type of E,
  2123                 // the expression
  2124                 //
  2125                 //    E.new <typeargs1>C<typargs2>(args) { ... }
  2126                 //
  2127                 // is translated to (where X is a fresh name and typarams is the
  2128                 // parameter list of the super constructor):
  2129                 //
  2130                 //   new <typeargs1>X(<*nullchk*>E, args) where
  2131                 //     X extends C<typargs2> {
  2132                 //       <typarams> X(ET e, args) {
  2133                 //         e.<typeargs1>super(args)
  2134                 //       }
  2135                 //       ...
  2136                 //     }
  2137                 if (Resolve.isStatic(env)) cdef.mods.flags |= STATIC;
  2139                 if (clazztype.tsym.isInterface()) {
  2140                     cdef.implementing = List.of(clazz);
  2141                 } else {
  2142                     cdef.extending = clazz;
  2145                 attribStat(cdef, localEnv);
  2147                 checkLambdaCandidate(tree, cdef.sym, clazztype);
  2149                 // If an outer instance is given,
  2150                 // prefix it to the constructor arguments
  2151                 // and delete it from the new expression
  2152                 if (tree.encl != null && !clazztype.tsym.isInterface()) {
  2153                     tree.args = tree.args.prepend(makeNullCheck(tree.encl));
  2154                     argtypes = argtypes.prepend(tree.encl.type);
  2155                     tree.encl = null;
  2158                 // Reassign clazztype and recompute constructor.
  2159                 clazztype = cdef.sym.type;
  2160                 Symbol sym = tree.constructor = rs.resolveConstructor(
  2161                     tree.pos(), localEnv, clazztype, argtypes, typeargtypes);
  2162                 Assert.check(sym.kind < AMBIGUOUS);
  2163                 tree.constructor = sym;
  2164                 tree.constructorType = checkId(tree,
  2165                     clazztype,
  2166                     tree.constructor,
  2167                     localEnv,
  2168                     new ResultInfo(pkind, newMethodTemplate(syms.voidType, argtypes, typeargtypes)));
  2169             } else {
  2170                 if (tree.clazz.hasTag(ANNOTATED_TYPE)) {
  2171                     checkForDeclarationAnnotations(((JCAnnotatedType) tree.clazz).annotations,
  2172                             tree.clazz.type.tsym);
  2176             if (tree.constructor != null && tree.constructor.kind == MTH)
  2177                 owntype = clazztype;
  2179         result = check(tree, owntype, VAL, resultInfo);
  2180         chk.validate(tree.typeargs, localEnv);
  2182     //where
  2183         void findDiamond(Env<AttrContext> env, JCNewClass tree, Type clazztype) {
  2184             JCTypeApply ta = (JCTypeApply)tree.clazz;
  2185             List<JCExpression> prevTypeargs = ta.arguments;
  2186             try {
  2187                 //create a 'fake' diamond AST node by removing type-argument trees
  2188                 ta.arguments = List.nil();
  2189                 ResultInfo findDiamondResult = new ResultInfo(VAL,
  2190                         resultInfo.checkContext.inferenceContext().free(resultInfo.pt) ? Type.noType : pt());
  2191                 Type inferred = deferredAttr.attribSpeculative(tree, env, findDiamondResult).type;
  2192                 Type polyPt = allowPoly ?
  2193                         syms.objectType :
  2194                         clazztype;
  2195                 if (!inferred.isErroneous() &&
  2196                     types.isAssignable(inferred, pt().hasTag(NONE) ? polyPt : pt(), types.noWarnings)) {
  2197                     String key = types.isSameType(clazztype, inferred) ?
  2198                         "diamond.redundant.args" :
  2199                         "diamond.redundant.args.1";
  2200                     log.warning(tree.clazz.pos(), key, clazztype, inferred);
  2202             } finally {
  2203                 ta.arguments = prevTypeargs;
  2207             private void checkLambdaCandidate(JCNewClass tree, ClassSymbol csym, Type clazztype) {
  2208                 if (allowLambda &&
  2209                         identifyLambdaCandidate &&
  2210                         clazztype.hasTag(CLASS) &&
  2211                         !pt().hasTag(NONE) &&
  2212                         types.isFunctionalInterface(clazztype.tsym)) {
  2213                     Symbol descriptor = types.findDescriptorSymbol(clazztype.tsym);
  2214                     int count = 0;
  2215                     boolean found = false;
  2216                     for (Symbol sym : csym.members().getElements()) {
  2217                         if ((sym.flags() & SYNTHETIC) != 0 ||
  2218                                 sym.isConstructor()) continue;
  2219                         count++;
  2220                         if (sym.kind != MTH ||
  2221                                 !sym.name.equals(descriptor.name)) continue;
  2222                         Type mtype = types.memberType(clazztype, sym);
  2223                         if (types.overrideEquivalent(mtype, types.memberType(clazztype, descriptor))) {
  2224                             found = true;
  2227                     if (found && count == 1) {
  2228                         log.note(tree.def, "potential.lambda.found");
  2233     private void checkForDeclarationAnnotations(List<? extends JCAnnotation> annotations,
  2234             Symbol sym) {
  2235         // Ensure that no declaration annotations are present.
  2236         // Note that a tree type might be an AnnotatedType with
  2237         // empty annotations, if only declaration annotations were given.
  2238         // This method will raise an error for such a type.
  2239         for (JCAnnotation ai : annotations) {
  2240             if (TypeAnnotations.annotationType(syms, names, ai.attribute, sym) == TypeAnnotations.AnnotationType.DECLARATION) {
  2241                 log.error(ai.pos(), "annotation.type.not.applicable");
  2247     /** Make an attributed null check tree.
  2248      */
  2249     public JCExpression makeNullCheck(JCExpression arg) {
  2250         // optimization: X.this is never null; skip null check
  2251         Name name = TreeInfo.name(arg);
  2252         if (name == names._this || name == names._super) return arg;
  2254         JCTree.Tag optag = NULLCHK;
  2255         JCUnary tree = make.at(arg.pos).Unary(optag, arg);
  2256         tree.operator = syms.nullcheck;
  2257         tree.type = arg.type;
  2258         return tree;
  2261     public void visitNewArray(JCNewArray tree) {
  2262         Type owntype = types.createErrorType(tree.type);
  2263         Env<AttrContext> localEnv = env.dup(tree);
  2264         Type elemtype;
  2265         if (tree.elemtype != null) {
  2266             elemtype = attribType(tree.elemtype, localEnv);
  2267             chk.validate(tree.elemtype, localEnv);
  2268             owntype = elemtype;
  2269             for (List<JCExpression> l = tree.dims; l.nonEmpty(); l = l.tail) {
  2270                 attribExpr(l.head, localEnv, syms.intType);
  2271                 owntype = new ArrayType(owntype, syms.arrayClass);
  2273             if (tree.elemtype.hasTag(ANNOTATED_TYPE)) {
  2274                 checkForDeclarationAnnotations(((JCAnnotatedType) tree.elemtype).annotations,
  2275                         tree.elemtype.type.tsym);
  2277         } else {
  2278             // we are seeing an untyped aggregate { ... }
  2279             // this is allowed only if the prototype is an array
  2280             if (pt().hasTag(ARRAY)) {
  2281                 elemtype = types.elemtype(pt());
  2282             } else {
  2283                 if (!pt().hasTag(ERROR)) {
  2284                     log.error(tree.pos(), "illegal.initializer.for.type",
  2285                               pt());
  2287                 elemtype = types.createErrorType(pt());
  2290         if (tree.elems != null) {
  2291             attribExprs(tree.elems, localEnv, elemtype);
  2292             owntype = new ArrayType(elemtype, syms.arrayClass);
  2294         if (!types.isReifiable(elemtype))
  2295             log.error(tree.pos(), "generic.array.creation");
  2296         result = check(tree, owntype, VAL, resultInfo);
  2299     /*
  2300      * A lambda expression can only be attributed when a target-type is available.
  2301      * In addition, if the target-type is that of a functional interface whose
  2302      * descriptor contains inference variables in argument position the lambda expression
  2303      * is 'stuck' (see DeferredAttr).
  2304      */
  2305     @Override
  2306     public void visitLambda(final JCLambda that) {
  2307         if (pt().isErroneous() || (pt().hasTag(NONE) && pt() != Type.recoveryType)) {
  2308             if (pt().hasTag(NONE)) {
  2309                 //lambda only allowed in assignment or method invocation/cast context
  2310                 log.error(that.pos(), "unexpected.lambda");
  2312             result = that.type = types.createErrorType(pt());
  2313             return;
  2315         //create an environment for attribution of the lambda expression
  2316         final Env<AttrContext> localEnv = lambdaEnv(that, env);
  2317         boolean needsRecovery =
  2318                 resultInfo.checkContext.deferredAttrContext().mode == DeferredAttr.AttrMode.CHECK;
  2319         try {
  2320             Type target = pt();
  2321             List<Type> explicitParamTypes = null;
  2322             if (that.paramKind == JCLambda.ParameterKind.EXPLICIT) {
  2323                 //attribute lambda parameters
  2324                 attribStats(that.params, localEnv);
  2325                 explicitParamTypes = TreeInfo.types(that.params);
  2326                 target = infer.instantiateFunctionalInterface(that, target, explicitParamTypes, resultInfo.checkContext);
  2329             Type lambdaType;
  2330             if (pt() != Type.recoveryType) {
  2331                 target = targetChecker.visit(target, that);
  2332                 lambdaType = types.findDescriptorType(target);
  2333                 chk.checkFunctionalInterface(that, target);
  2334             } else {
  2335                 target = Type.recoveryType;
  2336                 lambdaType = fallbackDescriptorType(that);
  2339             setFunctionalInfo(that, pt(), lambdaType, target, resultInfo.checkContext.inferenceContext());
  2341             if (lambdaType.hasTag(FORALL)) {
  2342                 //lambda expression target desc cannot be a generic method
  2343                 resultInfo.checkContext.report(that, diags.fragment("invalid.generic.lambda.target",
  2344                         lambdaType, kindName(target.tsym), target.tsym));
  2345                 result = that.type = types.createErrorType(pt());
  2346                 return;
  2349             if (that.paramKind == JCLambda.ParameterKind.IMPLICIT) {
  2350                 //add param type info in the AST
  2351                 List<Type> actuals = lambdaType.getParameterTypes();
  2352                 List<JCVariableDecl> params = that.params;
  2354                 boolean arityMismatch = false;
  2356                 while (params.nonEmpty()) {
  2357                     if (actuals.isEmpty()) {
  2358                         //not enough actuals to perform lambda parameter inference
  2359                         arityMismatch = true;
  2361                     //reset previously set info
  2362                     Type argType = arityMismatch ?
  2363                             syms.errType :
  2364                             actuals.head;
  2365                     params.head.vartype = make.at(params.head).Type(argType);
  2366                     params.head.sym = null;
  2367                     actuals = actuals.isEmpty() ?
  2368                             actuals :
  2369                             actuals.tail;
  2370                     params = params.tail;
  2373                 //attribute lambda parameters
  2374                 attribStats(that.params, localEnv);
  2376                 if (arityMismatch) {
  2377                     resultInfo.checkContext.report(that, diags.fragment("incompatible.arg.types.in.lambda"));
  2378                         result = that.type = types.createErrorType(target);
  2379                         return;
  2383             //from this point on, no recovery is needed; if we are in assignment context
  2384             //we will be able to attribute the whole lambda body, regardless of errors;
  2385             //if we are in a 'check' method context, and the lambda is not compatible
  2386             //with the target-type, it will be recovered anyway in Attr.checkId
  2387             needsRecovery = false;
  2389             FunctionalReturnContext funcContext = that.getBodyKind() == JCLambda.BodyKind.EXPRESSION ?
  2390                     new ExpressionLambdaReturnContext((JCExpression)that.getBody(), resultInfo.checkContext) :
  2391                     new FunctionalReturnContext(resultInfo.checkContext);
  2393             ResultInfo bodyResultInfo = lambdaType.getReturnType() == Type.recoveryType ?
  2394                 recoveryInfo :
  2395                 new LambdaResultInfo(lambdaType.getReturnType(), funcContext);
  2396             localEnv.info.returnResult = bodyResultInfo;
  2398             Log.DeferredDiagnosticHandler lambdaDeferredHandler = new Log.DeferredDiagnosticHandler(log);
  2399             try {
  2400                 if (that.getBodyKind() == JCLambda.BodyKind.EXPRESSION) {
  2401                     attribTree(that.getBody(), localEnv, bodyResultInfo);
  2402                 } else {
  2403                     JCBlock body = (JCBlock)that.body;
  2404                     attribStats(body.stats, localEnv);
  2407                 if (resultInfo.checkContext.deferredAttrContext().mode == AttrMode.SPECULATIVE) {
  2408                     //check for errors in lambda body
  2409                     for (JCDiagnostic deferredDiag : lambdaDeferredHandler.getDiagnostics()) {
  2410                         if (deferredDiag.getKind() == JCDiagnostic.Kind.ERROR) {
  2411                             resultInfo.checkContext
  2412                                     .report(that, diags.fragment("bad.arg.types.in.lambda", TreeInfo.types(that.params),
  2413                                     deferredDiag)); //hidden diag parameter
  2414                             //we mark the lambda as erroneous - this is crucial in the recovery step
  2415                             //as parameter-dependent type error won't be reported in that stage,
  2416                             //meaning that a lambda will be deemed erroeneous only if there is
  2417                             //a target-independent error (which will cause method diagnostic
  2418                             //to be skipped).
  2419                             result = that.type = types.createErrorType(target);
  2420                             return;
  2424             } finally {
  2425                 lambdaDeferredHandler.reportDeferredDiagnostics();
  2426                 log.popDiagnosticHandler(lambdaDeferredHandler);
  2429             result = check(that, target, VAL, resultInfo);
  2431             boolean isSpeculativeRound =
  2432                     resultInfo.checkContext.deferredAttrContext().mode == DeferredAttr.AttrMode.SPECULATIVE;
  2434             preFlow(that);
  2435             flow.analyzeLambda(env, that, make, isSpeculativeRound);
  2437             checkLambdaCompatible(that, lambdaType, resultInfo.checkContext, isSpeculativeRound);
  2439             if (!isSpeculativeRound) {
  2440                 checkAccessibleTypes(that, localEnv, resultInfo.checkContext.inferenceContext(), lambdaType, target);
  2442             result = check(that, target, VAL, resultInfo);
  2443         } catch (Types.FunctionDescriptorLookupError ex) {
  2444             JCDiagnostic cause = ex.getDiagnostic();
  2445             resultInfo.checkContext.report(that, cause);
  2446             result = that.type = types.createErrorType(pt());
  2447             return;
  2448         } finally {
  2449             localEnv.info.scope.leave();
  2450             if (needsRecovery) {
  2451                 attribTree(that, env, recoveryInfo);
  2455     //where
  2456         void preFlow(JCLambda tree) {
  2457             new PostAttrAnalyzer() {
  2458                 @Override
  2459                 public void scan(JCTree tree) {
  2460                     if (tree == null ||
  2461                             (tree.type != null &&
  2462                             tree.type == Type.stuckType)) {
  2463                         //don't touch stuck expressions!
  2464                         return;
  2466                     super.scan(tree);
  2468             }.scan(tree);
  2471         Types.MapVisitor<DiagnosticPosition> targetChecker = new Types.MapVisitor<DiagnosticPosition>() {
  2473             @Override
  2474             public Type visitClassType(ClassType t, DiagnosticPosition pos) {
  2475                 return t.isCompound() ?
  2476                         visitIntersectionClassType((IntersectionClassType)t, pos) : t;
  2479             public Type visitIntersectionClassType(IntersectionClassType ict, DiagnosticPosition pos) {
  2480                 Symbol desc = types.findDescriptorSymbol(makeNotionalInterface(ict));
  2481                 Type target = null;
  2482                 for (Type bound : ict.getExplicitComponents()) {
  2483                     TypeSymbol boundSym = bound.tsym;
  2484                     if (types.isFunctionalInterface(boundSym) &&
  2485                             types.findDescriptorSymbol(boundSym) == desc) {
  2486                         target = bound;
  2487                     } else if (!boundSym.isInterface() || (boundSym.flags() & ANNOTATION) != 0) {
  2488                         //bound must be an interface
  2489                         reportIntersectionError(pos, "not.an.intf.component", boundSym);
  2492                 return target != null ?
  2493                         target :
  2494                         ict.getExplicitComponents().head; //error recovery
  2497             private TypeSymbol makeNotionalInterface(IntersectionClassType ict) {
  2498                 ListBuffer<Type> targs = ListBuffer.lb();
  2499                 ListBuffer<Type> supertypes = ListBuffer.lb();
  2500                 for (Type i : ict.interfaces_field) {
  2501                     if (i.isParameterized()) {
  2502                         targs.appendList(i.tsym.type.allparams());
  2504                     supertypes.append(i.tsym.type);
  2506                 IntersectionClassType notionalIntf =
  2507                         (IntersectionClassType)types.makeCompoundType(supertypes.toList());
  2508                 notionalIntf.allparams_field = targs.toList();
  2509                 notionalIntf.tsym.flags_field |= INTERFACE;
  2510                 return notionalIntf.tsym;
  2513             private void reportIntersectionError(DiagnosticPosition pos, String key, Object... args) {
  2514                 resultInfo.checkContext.report(pos, diags.fragment("bad.intersection.target.for.functional.expr",
  2515                         diags.fragment(key, args)));
  2517         };
  2519         private Type fallbackDescriptorType(JCExpression tree) {
  2520             switch (tree.getTag()) {
  2521                 case LAMBDA:
  2522                     JCLambda lambda = (JCLambda)tree;
  2523                     List<Type> argtypes = List.nil();
  2524                     for (JCVariableDecl param : lambda.params) {
  2525                         argtypes = param.vartype != null ?
  2526                                 argtypes.append(param.vartype.type) :
  2527                                 argtypes.append(syms.errType);
  2529                     return new MethodType(argtypes, Type.recoveryType,
  2530                             List.of(syms.throwableType), syms.methodClass);
  2531                 case REFERENCE:
  2532                     return new MethodType(List.<Type>nil(), Type.recoveryType,
  2533                             List.of(syms.throwableType), syms.methodClass);
  2534                 default:
  2535                     Assert.error("Cannot get here!");
  2537             return null;
  2540         private void checkAccessibleTypes(final DiagnosticPosition pos, final Env<AttrContext> env,
  2541                 final InferenceContext inferenceContext, final Type... ts) {
  2542             checkAccessibleTypes(pos, env, inferenceContext, List.from(ts));
  2545         private void checkAccessibleTypes(final DiagnosticPosition pos, final Env<AttrContext> env,
  2546                 final InferenceContext inferenceContext, final List<Type> ts) {
  2547             if (inferenceContext.free(ts)) {
  2548                 inferenceContext.addFreeTypeListener(ts, new FreeTypeListener() {
  2549                     @Override
  2550                     public void typesInferred(InferenceContext inferenceContext) {
  2551                         checkAccessibleTypes(pos, env, inferenceContext, inferenceContext.asInstTypes(ts));
  2553                 });
  2554             } else {
  2555                 for (Type t : ts) {
  2556                     rs.checkAccessibleType(env, t);
  2561         /**
  2562          * Lambda/method reference have a special check context that ensures
  2563          * that i.e. a lambda return type is compatible with the expected
  2564          * type according to both the inherited context and the assignment
  2565          * context.
  2566          */
  2567         class FunctionalReturnContext extends Check.NestedCheckContext {
  2569             FunctionalReturnContext(CheckContext enclosingContext) {
  2570                 super(enclosingContext);
  2573             @Override
  2574             public boolean compatible(Type found, Type req, Warner warn) {
  2575                 //return type must be compatible in both current context and assignment context
  2576                 return chk.basicHandler.compatible(found, inferenceContext().asFree(req), warn);
  2579             @Override
  2580             public void report(DiagnosticPosition pos, JCDiagnostic details) {
  2581                 enclosingContext.report(pos, diags.fragment("incompatible.ret.type.in.lambda", details));
  2585         class ExpressionLambdaReturnContext extends FunctionalReturnContext {
  2587             JCExpression expr;
  2589             ExpressionLambdaReturnContext(JCExpression expr, CheckContext enclosingContext) {
  2590                 super(enclosingContext);
  2591                 this.expr = expr;
  2594             @Override
  2595             public boolean compatible(Type found, Type req, Warner warn) {
  2596                 //a void return is compatible with an expression statement lambda
  2597                 return TreeInfo.isExpressionStatement(expr) && req.hasTag(VOID) ||
  2598                         super.compatible(found, req, warn);
  2602         class LambdaResultInfo extends ResultInfo {
  2604             LambdaResultInfo(Type pt, CheckContext checkContext) {
  2605                 super(VAL, pt, checkContext);
  2608             @Override
  2609             protected Type check(DiagnosticPosition pos, Type found) {
  2610                 return super.check(pos, found.baseType());
  2613             @Override
  2614             protected ResultInfo dup(CheckContext newContext) {
  2615                 return new LambdaResultInfo(pt, newContext);
  2618             @Override
  2619             protected ResultInfo dup(Type newPt) {
  2620                 return new LambdaResultInfo(newPt, checkContext);
  2624         /**
  2625         * Lambda compatibility. Check that given return types, thrown types, parameter types
  2626         * are compatible with the expected functional interface descriptor. This means that:
  2627         * (i) parameter types must be identical to those of the target descriptor; (ii) return
  2628         * types must be compatible with the return type of the expected descriptor;
  2629         * (iii) thrown types must be 'included' in the thrown types list of the expected
  2630         * descriptor.
  2631         */
  2632         private void checkLambdaCompatible(JCLambda tree, Type descriptor, CheckContext checkContext, boolean speculativeAttr) {
  2633             Type returnType = checkContext.inferenceContext().asFree(descriptor.getReturnType());
  2635             //return values have already been checked - but if lambda has no return
  2636             //values, we must ensure that void/value compatibility is correct;
  2637             //this amounts at checking that, if a lambda body can complete normally,
  2638             //the descriptor's return type must be void
  2639             if (tree.getBodyKind() == JCLambda.BodyKind.STATEMENT && tree.canCompleteNormally &&
  2640                     !returnType.hasTag(VOID) && returnType != Type.recoveryType) {
  2641                 checkContext.report(tree, diags.fragment("incompatible.ret.type.in.lambda",
  2642                         diags.fragment("missing.ret.val", returnType)));
  2645             List<Type> argTypes = checkContext.inferenceContext().asFree(descriptor.getParameterTypes());
  2646             if (!types.isSameTypes(argTypes, TreeInfo.types(tree.params))) {
  2647                 checkContext.report(tree, diags.fragment("incompatible.arg.types.in.lambda"));
  2650             if (!speculativeAttr) {
  2651                 List<Type> thrownTypes = checkContext.inferenceContext().asFree(descriptor.getThrownTypes());
  2652                 if (chk.unhandled(tree.inferredThrownTypes == null ? List.<Type>nil() : tree.inferredThrownTypes, thrownTypes).nonEmpty()) {
  2653                     log.error(tree, "incompatible.thrown.types.in.lambda", tree.inferredThrownTypes);
  2658         private Env<AttrContext> lambdaEnv(JCLambda that, Env<AttrContext> env) {
  2659             Env<AttrContext> lambdaEnv;
  2660             Symbol owner = env.info.scope.owner;
  2661             if (owner.kind == VAR && owner.owner.kind == TYP) {
  2662                 //field initializer
  2663                 lambdaEnv = env.dup(that, env.info.dup(env.info.scope.dupUnshared()));
  2664                 lambdaEnv.info.scope.owner =
  2665                     new MethodSymbol((owner.flags() & STATIC) | BLOCK, names.empty, null,
  2666                                      env.info.scope.owner);
  2667             } else {
  2668                 lambdaEnv = env.dup(that, env.info.dup(env.info.scope.dup()));
  2670             return lambdaEnv;
  2673     @Override
  2674     public void visitReference(final JCMemberReference that) {
  2675         if (pt().isErroneous() || (pt().hasTag(NONE) && pt() != Type.recoveryType)) {
  2676             if (pt().hasTag(NONE)) {
  2677                 //method reference only allowed in assignment or method invocation/cast context
  2678                 log.error(that.pos(), "unexpected.mref");
  2680             result = that.type = types.createErrorType(pt());
  2681             return;
  2683         final Env<AttrContext> localEnv = env.dup(that);
  2684         try {
  2685             //attribute member reference qualifier - if this is a constructor
  2686             //reference, the expected kind must be a type
  2687             Type exprType = attribTree(that.expr, env, memberReferenceQualifierResult(that));
  2689             if (that.getMode() == JCMemberReference.ReferenceMode.NEW) {
  2690                 exprType = chk.checkConstructorRefType(that.expr, exprType);
  2693             if (exprType.isErroneous()) {
  2694                 //if the qualifier expression contains problems,
  2695                 //give up attribution of method reference
  2696                 result = that.type = exprType;
  2697                 return;
  2700             if (TreeInfo.isStaticSelector(that.expr, names)) {
  2701                 //if the qualifier is a type, validate it; raw warning check is
  2702                 //omitted as we don't know at this stage as to whether this is a
  2703                 //raw selector (because of inference)
  2704                 chk.validate(that.expr, env, false);
  2707             //attrib type-arguments
  2708             List<Type> typeargtypes = List.nil();
  2709             if (that.typeargs != null) {
  2710                 typeargtypes = attribTypes(that.typeargs, localEnv);
  2713             Type target;
  2714             Type desc;
  2715             if (pt() != Type.recoveryType) {
  2716                 target = targetChecker.visit(pt(), that);
  2717                 desc = types.findDescriptorType(target);
  2718                 chk.checkFunctionalInterface(that, target);
  2719             } else {
  2720                 target = Type.recoveryType;
  2721                 desc = fallbackDescriptorType(that);
  2724             setFunctionalInfo(that, pt(), desc, target, resultInfo.checkContext.inferenceContext());
  2725             List<Type> argtypes = desc.getParameterTypes();
  2726             Resolve.MethodCheck referenceCheck = rs.resolveMethodCheck;
  2728             if (resultInfo.checkContext.inferenceContext().free(argtypes)) {
  2729                 referenceCheck = rs.new MethodReferenceCheck(resultInfo.checkContext.inferenceContext());
  2732             Pair<Symbol, Resolve.ReferenceLookupHelper> refResult = null;
  2733             List<Type> saved_undet = resultInfo.checkContext.inferenceContext().save();
  2734             try {
  2735                 refResult = rs.resolveMemberReference(that.pos(), localEnv, that, that.expr.type,
  2736                         that.name, argtypes, typeargtypes, true, referenceCheck,
  2737                         resultInfo.checkContext.inferenceContext());
  2738             } finally {
  2739                 resultInfo.checkContext.inferenceContext().rollback(saved_undet);
  2742             Symbol refSym = refResult.fst;
  2743             Resolve.ReferenceLookupHelper lookupHelper = refResult.snd;
  2745             if (refSym.kind != MTH) {
  2746                 boolean targetError;
  2747                 switch (refSym.kind) {
  2748                     case ABSENT_MTH:
  2749                         targetError = false;
  2750                         break;
  2751                     case WRONG_MTH:
  2752                     case WRONG_MTHS:
  2753                     case AMBIGUOUS:
  2754                     case HIDDEN:
  2755                     case STATICERR:
  2756                     case MISSING_ENCL:
  2757                         targetError = true;
  2758                         break;
  2759                     default:
  2760                         Assert.error("unexpected result kind " + refSym.kind);
  2761                         targetError = false;
  2764                 JCDiagnostic detailsDiag = ((Resolve.ResolveError)refSym).getDiagnostic(JCDiagnostic.DiagnosticType.FRAGMENT,
  2765                                 that, exprType.tsym, exprType, that.name, argtypes, typeargtypes);
  2767                 JCDiagnostic.DiagnosticType diagKind = targetError ?
  2768                         JCDiagnostic.DiagnosticType.FRAGMENT : JCDiagnostic.DiagnosticType.ERROR;
  2770                 JCDiagnostic diag = diags.create(diagKind, log.currentSource(), that,
  2771                         "invalid.mref", Kinds.kindName(that.getMode()), detailsDiag);
  2773                 if (targetError && target == Type.recoveryType) {
  2774                     //a target error doesn't make sense during recovery stage
  2775                     //as we don't know what actual parameter types are
  2776                     result = that.type = target;
  2777                     return;
  2778                 } else {
  2779                     if (targetError) {
  2780                         resultInfo.checkContext.report(that, diag);
  2781                     } else {
  2782                         log.report(diag);
  2784                     result = that.type = types.createErrorType(target);
  2785                     return;
  2789             that.sym = refSym.baseSymbol();
  2790             that.kind = lookupHelper.referenceKind(that.sym);
  2791             that.ownerAccessible = rs.isAccessible(localEnv, that.sym.enclClass());
  2793             if (desc.getReturnType() == Type.recoveryType) {
  2794                 // stop here
  2795                 result = that.type = target;
  2796                 return;
  2799             if (resultInfo.checkContext.deferredAttrContext().mode == AttrMode.CHECK) {
  2801                 if (that.getMode() == ReferenceMode.INVOKE &&
  2802                         TreeInfo.isStaticSelector(that.expr, names) &&
  2803                         that.kind.isUnbound() &&
  2804                         !desc.getParameterTypes().head.isParameterized()) {
  2805                     chk.checkRaw(that.expr, localEnv);
  2808                 if (!that.kind.isUnbound() &&
  2809                         that.getMode() == ReferenceMode.INVOKE &&
  2810                         TreeInfo.isStaticSelector(that.expr, names) &&
  2811                         !that.sym.isStatic()) {
  2812                     log.error(that.expr.pos(), "invalid.mref", Kinds.kindName(that.getMode()),
  2813                             diags.fragment("non-static.cant.be.ref", Kinds.kindName(refSym), refSym));
  2814                     result = that.type = types.createErrorType(target);
  2815                     return;
  2818                 if (that.kind.isUnbound() &&
  2819                         that.getMode() == ReferenceMode.INVOKE &&
  2820                         TreeInfo.isStaticSelector(that.expr, names) &&
  2821                         that.sym.isStatic()) {
  2822                     log.error(that.expr.pos(), "invalid.mref", Kinds.kindName(that.getMode()),
  2823                             diags.fragment("static.method.in.unbound.lookup", Kinds.kindName(refSym), refSym));
  2824                     result = that.type = types.createErrorType(target);
  2825                     return;
  2828                 if (that.sym.isStatic() && TreeInfo.isStaticSelector(that.expr, names) &&
  2829                         exprType.getTypeArguments().nonEmpty()) {
  2830                     //static ref with class type-args
  2831                     log.error(that.expr.pos(), "invalid.mref", Kinds.kindName(that.getMode()),
  2832                             diags.fragment("static.mref.with.targs"));
  2833                     result = that.type = types.createErrorType(target);
  2834                     return;
  2837                 if (that.sym.isStatic() && !TreeInfo.isStaticSelector(that.expr, names) &&
  2838                         !that.kind.isUnbound()) {
  2839                     //no static bound mrefs
  2840                     log.error(that.expr.pos(), "invalid.mref", Kinds.kindName(that.getMode()),
  2841                             diags.fragment("static.bound.mref"));
  2842                     result = that.type = types.createErrorType(target);
  2843                     return;
  2846                 if (!refSym.isStatic() && that.kind == JCMemberReference.ReferenceKind.SUPER) {
  2847                     // Check that super-qualified symbols are not abstract (JLS)
  2848                     rs.checkNonAbstract(that.pos(), that.sym);
  2852             ResultInfo checkInfo =
  2853                     resultInfo.dup(newMethodTemplate(
  2854                         desc.getReturnType().hasTag(VOID) ? Type.noType : desc.getReturnType(),
  2855                         that.kind.isUnbound() ? argtypes.tail : argtypes, typeargtypes));
  2857             Type refType = checkId(that, lookupHelper.site, refSym, localEnv, checkInfo);
  2859             if (that.kind.isUnbound() &&
  2860                     resultInfo.checkContext.inferenceContext().free(argtypes.head)) {
  2861                 //re-generate inference constraints for unbound receiver
  2862                 if (!types.isSubtype(resultInfo.checkContext.inferenceContext().asFree(argtypes.head), exprType)) {
  2863                     //cannot happen as this has already been checked - we just need
  2864                     //to regenerate the inference constraints, as that has been lost
  2865                     //as a result of the call to inferenceContext.save()
  2866                     Assert.error("Can't get here");
  2870             if (!refType.isErroneous()) {
  2871                 refType = types.createMethodTypeWithReturn(refType,
  2872                         adjustMethodReturnType(lookupHelper.site, that.name, checkInfo.pt.getParameterTypes(), refType.getReturnType()));
  2875             //go ahead with standard method reference compatibility check - note that param check
  2876             //is a no-op (as this has been taken care during method applicability)
  2877             boolean isSpeculativeRound =
  2878                     resultInfo.checkContext.deferredAttrContext().mode == DeferredAttr.AttrMode.SPECULATIVE;
  2879             checkReferenceCompatible(that, desc, refType, resultInfo.checkContext, isSpeculativeRound);
  2880             if (!isSpeculativeRound) {
  2881                 checkAccessibleTypes(that, localEnv, resultInfo.checkContext.inferenceContext(), desc, target);
  2883             result = check(that, target, VAL, resultInfo);
  2884         } catch (Types.FunctionDescriptorLookupError ex) {
  2885             JCDiagnostic cause = ex.getDiagnostic();
  2886             resultInfo.checkContext.report(that, cause);
  2887             result = that.type = types.createErrorType(pt());
  2888             return;
  2891     //where
  2892         ResultInfo memberReferenceQualifierResult(JCMemberReference tree) {
  2893             //if this is a constructor reference, the expected kind must be a type
  2894             return new ResultInfo(tree.getMode() == ReferenceMode.INVOKE ? VAL | TYP : TYP, Type.noType);
  2898     @SuppressWarnings("fallthrough")
  2899     void checkReferenceCompatible(JCMemberReference tree, Type descriptor, Type refType, CheckContext checkContext, boolean speculativeAttr) {
  2900         Type returnType = checkContext.inferenceContext().asFree(descriptor.getReturnType());
  2902         Type resType;
  2903         switch (tree.getMode()) {
  2904             case NEW:
  2905                 if (!tree.expr.type.isRaw()) {
  2906                     resType = tree.expr.type;
  2907                     break;
  2909             default:
  2910                 resType = refType.getReturnType();
  2913         Type incompatibleReturnType = resType;
  2915         if (returnType.hasTag(VOID)) {
  2916             incompatibleReturnType = null;
  2919         if (!returnType.hasTag(VOID) && !resType.hasTag(VOID)) {
  2920             if (resType.isErroneous() ||
  2921                     new FunctionalReturnContext(checkContext).compatible(resType, returnType, types.noWarnings)) {
  2922                 incompatibleReturnType = null;
  2926         if (incompatibleReturnType != null) {
  2927             checkContext.report(tree, diags.fragment("incompatible.ret.type.in.mref",
  2928                     diags.fragment("inconvertible.types", resType, descriptor.getReturnType())));
  2931         if (!speculativeAttr) {
  2932             List<Type> thrownTypes = checkContext.inferenceContext().asFree(descriptor.getThrownTypes());
  2933             if (chk.unhandled(refType.getThrownTypes(), thrownTypes).nonEmpty()) {
  2934                 log.error(tree, "incompatible.thrown.types.in.mref", refType.getThrownTypes());
  2939     /**
  2940      * Set functional type info on the underlying AST. Note: as the target descriptor
  2941      * might contain inference variables, we might need to register an hook in the
  2942      * current inference context.
  2943      */
  2944     private void setFunctionalInfo(final JCFunctionalExpression fExpr, final Type pt,
  2945             final Type descriptorType, final Type primaryTarget, InferenceContext inferenceContext) {
  2946         if (inferenceContext.free(descriptorType)) {
  2947             inferenceContext.addFreeTypeListener(List.of(pt, descriptorType), new FreeTypeListener() {
  2948                 public void typesInferred(InferenceContext inferenceContext) {
  2949                     setFunctionalInfo(fExpr, pt, inferenceContext.asInstType(descriptorType),
  2950                             inferenceContext.asInstType(primaryTarget), inferenceContext);
  2952             });
  2953         } else {
  2954             ListBuffer<TypeSymbol> targets = ListBuffer.lb();
  2955             if (pt.hasTag(CLASS)) {
  2956                 if (pt.isCompound()) {
  2957                     targets.append(primaryTarget.tsym); //this goes first
  2958                     for (Type t : ((IntersectionClassType)pt()).interfaces_field) {
  2959                         if (t != primaryTarget) {
  2960                             targets.append(t.tsym);
  2963                 } else {
  2964                     targets.append(pt.tsym);
  2967             fExpr.targets = targets.toList();
  2968             fExpr.descriptorType = descriptorType;
  2972     public void visitParens(JCParens tree) {
  2973         Type owntype = attribTree(tree.expr, env, resultInfo);
  2974         result = check(tree, owntype, pkind(), resultInfo);
  2975         Symbol sym = TreeInfo.symbol(tree);
  2976         if (sym != null && (sym.kind&(TYP|PCK)) != 0)
  2977             log.error(tree.pos(), "illegal.start.of.type");
  2980     public void visitAssign(JCAssign tree) {
  2981         Type owntype = attribTree(tree.lhs, env.dup(tree), varInfo);
  2982         Type capturedType = capture(owntype);
  2983         attribExpr(tree.rhs, env, owntype);
  2984         result = check(tree, capturedType, VAL, resultInfo);
  2987     public void visitAssignop(JCAssignOp tree) {
  2988         // Attribute arguments.
  2989         Type owntype = attribTree(tree.lhs, env, varInfo);
  2990         Type operand = attribExpr(tree.rhs, env);
  2991         // Find operator.
  2992         Symbol operator = tree.operator = rs.resolveBinaryOperator(
  2993             tree.pos(), tree.getTag().noAssignOp(), env,
  2994             owntype, operand);
  2996         if (operator.kind == MTH &&
  2997                 !owntype.isErroneous() &&
  2998                 !operand.isErroneous()) {
  2999             chk.checkOperator(tree.pos(),
  3000                               (OperatorSymbol)operator,
  3001                               tree.getTag().noAssignOp(),
  3002                               owntype,
  3003                               operand);
  3004             chk.checkDivZero(tree.rhs.pos(), operator, operand);
  3005             chk.checkCastable(tree.rhs.pos(),
  3006                               operator.type.getReturnType(),
  3007                               owntype);
  3009         result = check(tree, owntype, VAL, resultInfo);
  3012     public void visitUnary(JCUnary tree) {
  3013         // Attribute arguments.
  3014         Type argtype = (tree.getTag().isIncOrDecUnaryOp())
  3015             ? attribTree(tree.arg, env, varInfo)
  3016             : chk.checkNonVoid(tree.arg.pos(), attribExpr(tree.arg, env));
  3018         // Find operator.
  3019         Symbol operator = tree.operator =
  3020             rs.resolveUnaryOperator(tree.pos(), tree.getTag(), env, argtype);
  3022         Type owntype = types.createErrorType(tree.type);
  3023         if (operator.kind == MTH &&
  3024                 !argtype.isErroneous()) {
  3025             owntype = (tree.getTag().isIncOrDecUnaryOp())
  3026                 ? tree.arg.type
  3027                 : operator.type.getReturnType();
  3028             int opc = ((OperatorSymbol)operator).opcode;
  3030             // If the argument is constant, fold it.
  3031             if (argtype.constValue() != null) {
  3032                 Type ctype = cfolder.fold1(opc, argtype);
  3033                 if (ctype != null) {
  3034                     owntype = cfolder.coerce(ctype, owntype);
  3036                     // Remove constant types from arguments to
  3037                     // conserve space. The parser will fold concatenations
  3038                     // of string literals; the code here also
  3039                     // gets rid of intermediate results when some of the
  3040                     // operands are constant identifiers.
  3041                     if (tree.arg.type.tsym == syms.stringType.tsym) {
  3042                         tree.arg.type = syms.stringType;
  3047         result = check(tree, owntype, VAL, resultInfo);
  3050     public void visitBinary(JCBinary tree) {
  3051         // Attribute arguments.
  3052         Type left = chk.checkNonVoid(tree.lhs.pos(), attribExpr(tree.lhs, env));
  3053         Type right = chk.checkNonVoid(tree.lhs.pos(), attribExpr(tree.rhs, env));
  3055         // Find operator.
  3056         Symbol operator = tree.operator =
  3057             rs.resolveBinaryOperator(tree.pos(), tree.getTag(), env, left, right);
  3059         Type owntype = types.createErrorType(tree.type);
  3060         if (operator.kind == MTH &&
  3061                 !left.isErroneous() &&
  3062                 !right.isErroneous()) {
  3063             owntype = operator.type.getReturnType();
  3064             // This will figure out when unboxing can happen and
  3065             // choose the right comparison operator.
  3066             int opc = chk.checkOperator(tree.lhs.pos(),
  3067                                         (OperatorSymbol)operator,
  3068                                         tree.getTag(),
  3069                                         left,
  3070                                         right);
  3072             // If both arguments are constants, fold them.
  3073             if (left.constValue() != null && right.constValue() != null) {
  3074                 Type ctype = cfolder.fold2(opc, left, right);
  3075                 if (ctype != null) {
  3076                     owntype = cfolder.coerce(ctype, owntype);
  3078                     // Remove constant types from arguments to
  3079                     // conserve space. The parser will fold concatenations
  3080                     // of string literals; the code here also
  3081                     // gets rid of intermediate results when some of the
  3082                     // operands are constant identifiers.
  3083                     if (tree.lhs.type.tsym == syms.stringType.tsym) {
  3084                         tree.lhs.type = syms.stringType;
  3086                     if (tree.rhs.type.tsym == syms.stringType.tsym) {
  3087                         tree.rhs.type = syms.stringType;
  3092             // Check that argument types of a reference ==, != are
  3093             // castable to each other, (JLS 15.21).  Note: unboxing
  3094             // comparisons will not have an acmp* opc at this point.
  3095             if ((opc == ByteCodes.if_acmpeq || opc == ByteCodes.if_acmpne)) {
  3096                 if (!types.isEqualityComparable(left, right,
  3097                                                 new Warner(tree.pos()))) {
  3098                     log.error(tree.pos(), "incomparable.types", left, right);
  3102             chk.checkDivZero(tree.rhs.pos(), operator, right);
  3104         result = check(tree, owntype, VAL, resultInfo);
  3107     public void visitTypeCast(final JCTypeCast tree) {
  3108         Type clazztype = attribType(tree.clazz, env);
  3109         chk.validate(tree.clazz, env, false);
  3110         //a fresh environment is required for 292 inference to work properly ---
  3111         //see Infer.instantiatePolymorphicSignatureInstance()
  3112         Env<AttrContext> localEnv = env.dup(tree);
  3113         //should we propagate the target type?
  3114         final ResultInfo castInfo;
  3115         JCExpression expr = TreeInfo.skipParens(tree.expr);
  3116         boolean isPoly = allowPoly && (expr.hasTag(LAMBDA) || expr.hasTag(REFERENCE));
  3117         if (isPoly) {
  3118             //expression is a poly - we need to propagate target type info
  3119             castInfo = new ResultInfo(VAL, clazztype, new Check.NestedCheckContext(resultInfo.checkContext) {
  3120                 @Override
  3121                 public boolean compatible(Type found, Type req, Warner warn) {
  3122                     return types.isCastable(found, req, warn);
  3124             });
  3125         } else {
  3126             //standalone cast - target-type info is not propagated
  3127             castInfo = unknownExprInfo;
  3129         Type exprtype = attribTree(tree.expr, localEnv, castInfo);
  3130         Type owntype = isPoly ? clazztype : chk.checkCastable(tree.expr.pos(), exprtype, clazztype);
  3131         if (exprtype.constValue() != null)
  3132             owntype = cfolder.coerce(exprtype, owntype);
  3133         result = check(tree, capture(owntype), VAL, resultInfo);
  3134         if (!isPoly)
  3135             chk.checkRedundantCast(localEnv, tree);
  3138     public void visitTypeTest(JCInstanceOf tree) {
  3139         Type exprtype = chk.checkNullOrRefType(
  3140             tree.expr.pos(), attribExpr(tree.expr, env));
  3141         Type clazztype = chk.checkReifiableReferenceType(
  3142             tree.clazz.pos(), attribType(tree.clazz, env));
  3143         chk.validate(tree.clazz, env, false);
  3144         chk.checkCastable(tree.expr.pos(), exprtype, clazztype);
  3145         result = check(tree, syms.booleanType, VAL, resultInfo);
  3148     public void visitIndexed(JCArrayAccess tree) {
  3149         Type owntype = types.createErrorType(tree.type);
  3150         Type atype = attribExpr(tree.indexed, env);
  3151         attribExpr(tree.index, env, syms.intType);
  3152         if (types.isArray(atype))
  3153             owntype = types.elemtype(atype);
  3154         else if (!atype.hasTag(ERROR))
  3155             log.error(tree.pos(), "array.req.but.found", atype);
  3156         if ((pkind() & VAR) == 0) owntype = capture(owntype);
  3157         result = check(tree, owntype, VAR, resultInfo);
  3160     public void visitIdent(JCIdent tree) {
  3161         Symbol sym;
  3163         // Find symbol
  3164         if (pt().hasTag(METHOD) || pt().hasTag(FORALL)) {
  3165             // If we are looking for a method, the prototype `pt' will be a
  3166             // method type with the type of the call's arguments as parameters.
  3167             env.info.pendingResolutionPhase = null;
  3168             sym = rs.resolveMethod(tree.pos(), env, tree.name, pt().getParameterTypes(), pt().getTypeArguments());
  3169         } else if (tree.sym != null && tree.sym.kind != VAR) {
  3170             sym = tree.sym;
  3171         } else {
  3172             sym = rs.resolveIdent(tree.pos(), env, tree.name, pkind());
  3174         tree.sym = sym;
  3176         // (1) Also find the environment current for the class where
  3177         //     sym is defined (`symEnv').
  3178         // Only for pre-tiger versions (1.4 and earlier):
  3179         // (2) Also determine whether we access symbol out of an anonymous
  3180         //     class in a this or super call.  This is illegal for instance
  3181         //     members since such classes don't carry a this$n link.
  3182         //     (`noOuterThisPath').
  3183         Env<AttrContext> symEnv = env;
  3184         boolean noOuterThisPath = false;
  3185         if (env.enclClass.sym.owner.kind != PCK && // we are in an inner class
  3186             (sym.kind & (VAR | MTH | TYP)) != 0 &&
  3187             sym.owner.kind == TYP &&
  3188             tree.name != names._this && tree.name != names._super) {
  3190             // Find environment in which identifier is defined.
  3191             while (symEnv.outer != null &&
  3192                    !sym.isMemberOf(symEnv.enclClass.sym, types)) {
  3193                 if ((symEnv.enclClass.sym.flags() & NOOUTERTHIS) != 0)
  3194                     noOuterThisPath = !allowAnonOuterThis;
  3195                 symEnv = symEnv.outer;
  3199         // If symbol is a variable, ...
  3200         if (sym.kind == VAR) {
  3201             VarSymbol v = (VarSymbol)sym;
  3203             // ..., evaluate its initializer, if it has one, and check for
  3204             // illegal forward reference.
  3205             checkInit(tree, env, v, false);
  3207             // If we are expecting a variable (as opposed to a value), check
  3208             // that the variable is assignable in the current environment.
  3209             if (pkind() == VAR)
  3210                 checkAssignable(tree.pos(), v, null, env);
  3213         // In a constructor body,
  3214         // if symbol is a field or instance method, check that it is
  3215         // not accessed before the supertype constructor is called.
  3216         if ((symEnv.info.isSelfCall || noOuterThisPath) &&
  3217             (sym.kind & (VAR | MTH)) != 0 &&
  3218             sym.owner.kind == TYP &&
  3219             (sym.flags() & STATIC) == 0) {
  3220             chk.earlyRefError(tree.pos(), sym.kind == VAR ? sym : thisSym(tree.pos(), env));
  3222         Env<AttrContext> env1 = env;
  3223         if (sym.kind != ERR && sym.kind != TYP && sym.owner != null && sym.owner != env1.enclClass.sym) {
  3224             // If the found symbol is inaccessible, then it is
  3225             // accessed through an enclosing instance.  Locate this
  3226             // enclosing instance:
  3227             while (env1.outer != null && !rs.isAccessible(env, env1.enclClass.sym.type, sym))
  3228                 env1 = env1.outer;
  3230         result = checkId(tree, env1.enclClass.sym.type, sym, env, resultInfo);
  3233     public void visitSelect(JCFieldAccess tree) {
  3234         // Determine the expected kind of the qualifier expression.
  3235         int skind = 0;
  3236         if (tree.name == names._this || tree.name == names._super ||
  3237             tree.name == names._class)
  3239             skind = TYP;
  3240         } else {
  3241             if ((pkind() & PCK) != 0) skind = skind | PCK;
  3242             if ((pkind() & TYP) != 0) skind = skind | TYP | PCK;
  3243             if ((pkind() & (VAL | MTH)) != 0) skind = skind | VAL | TYP;
  3246         // Attribute the qualifier expression, and determine its symbol (if any).
  3247         Type site = attribTree(tree.selected, env, new ResultInfo(skind, Infer.anyPoly));
  3248         if ((pkind() & (PCK | TYP)) == 0)
  3249             site = capture(site); // Capture field access
  3251         // don't allow T.class T[].class, etc
  3252         if (skind == TYP) {
  3253             Type elt = site;
  3254             while (elt.hasTag(ARRAY))
  3255                 elt = ((ArrayType)elt.unannotatedType()).elemtype;
  3256             if (elt.hasTag(TYPEVAR)) {
  3257                 log.error(tree.pos(), "type.var.cant.be.deref");
  3258                 result = types.createErrorType(tree.type);
  3259                 return;
  3263         // If qualifier symbol is a type or `super', assert `selectSuper'
  3264         // for the selection. This is relevant for determining whether
  3265         // protected symbols are accessible.
  3266         Symbol sitesym = TreeInfo.symbol(tree.selected);
  3267         boolean selectSuperPrev = env.info.selectSuper;
  3268         env.info.selectSuper =
  3269             sitesym != null &&
  3270             sitesym.name == names._super;
  3272         // Determine the symbol represented by the selection.
  3273         env.info.pendingResolutionPhase = null;
  3274         Symbol sym = selectSym(tree, sitesym, site, env, resultInfo);
  3275         if (sym.exists() && !isType(sym) && (pkind() & (PCK | TYP)) != 0) {
  3276             site = capture(site);
  3277             sym = selectSym(tree, sitesym, site, env, resultInfo);
  3279         boolean varArgs = env.info.lastResolveVarargs();
  3280         tree.sym = sym;
  3282         if (site.hasTag(TYPEVAR) && !isType(sym) && sym.kind != ERR) {
  3283             while (site.hasTag(TYPEVAR)) site = site.getUpperBound();
  3284             site = capture(site);
  3287         // If that symbol is a variable, ...
  3288         if (sym.kind == VAR) {
  3289             VarSymbol v = (VarSymbol)sym;
  3291             // ..., evaluate its initializer, if it has one, and check for
  3292             // illegal forward reference.
  3293             checkInit(tree, env, v, true);
  3295             // If we are expecting a variable (as opposed to a value), check
  3296             // that the variable is assignable in the current environment.
  3297             if (pkind() == VAR)
  3298                 checkAssignable(tree.pos(), v, tree.selected, env);
  3301         if (sitesym != null &&
  3302                 sitesym.kind == VAR &&
  3303                 ((VarSymbol)sitesym).isResourceVariable() &&
  3304                 sym.kind == MTH &&
  3305                 sym.name.equals(names.close) &&
  3306                 sym.overrides(syms.autoCloseableClose, sitesym.type.tsym, types, true) &&
  3307                 env.info.lint.isEnabled(LintCategory.TRY)) {
  3308             log.warning(LintCategory.TRY, tree, "try.explicit.close.call");
  3311         // Disallow selecting a type from an expression
  3312         if (isType(sym) && (sitesym==null || (sitesym.kind&(TYP|PCK)) == 0)) {
  3313             tree.type = check(tree.selected, pt(),
  3314                               sitesym == null ? VAL : sitesym.kind, new ResultInfo(TYP|PCK, pt()));
  3317         if (isType(sitesym)) {
  3318             if (sym.name == names._this) {
  3319                 // If `C' is the currently compiled class, check that
  3320                 // C.this' does not appear in a call to a super(...)
  3321                 if (env.info.isSelfCall &&
  3322                     site.tsym == env.enclClass.sym) {
  3323                     chk.earlyRefError(tree.pos(), sym);
  3325             } else {
  3326                 // Check if type-qualified fields or methods are static (JLS)
  3327                 if ((sym.flags() & STATIC) == 0 &&
  3328                     !env.next.tree.hasTag(REFERENCE) &&
  3329                     sym.name != names._super &&
  3330                     (sym.kind == VAR || sym.kind == MTH)) {
  3331                     rs.accessBase(rs.new StaticError(sym),
  3332                               tree.pos(), site, sym.name, true);
  3335         } else if (sym.kind != ERR && (sym.flags() & STATIC) != 0 && sym.name != names._class) {
  3336             // If the qualified item is not a type and the selected item is static, report
  3337             // a warning. Make allowance for the class of an array type e.g. Object[].class)
  3338             chk.warnStatic(tree, "static.not.qualified.by.type", Kinds.kindName(sym.kind), sym.owner);
  3341         // If we are selecting an instance member via a `super', ...
  3342         if (env.info.selectSuper && (sym.flags() & STATIC) == 0) {
  3344             // Check that super-qualified symbols are not abstract (JLS)
  3345             rs.checkNonAbstract(tree.pos(), sym);
  3347             if (site.isRaw()) {
  3348                 // Determine argument types for site.
  3349                 Type site1 = types.asSuper(env.enclClass.sym.type, site.tsym);
  3350                 if (site1 != null) site = site1;
  3354         env.info.selectSuper = selectSuperPrev;
  3355         result = checkId(tree, site, sym, env, resultInfo);
  3357     //where
  3358         /** Determine symbol referenced by a Select expression,
  3360          *  @param tree   The select tree.
  3361          *  @param site   The type of the selected expression,
  3362          *  @param env    The current environment.
  3363          *  @param resultInfo The current result.
  3364          */
  3365         private Symbol selectSym(JCFieldAccess tree,
  3366                                  Symbol location,
  3367                                  Type site,
  3368                                  Env<AttrContext> env,
  3369                                  ResultInfo resultInfo) {
  3370             DiagnosticPosition pos = tree.pos();
  3371             Name name = tree.name;
  3372             switch (site.getTag()) {
  3373             case PACKAGE:
  3374                 return rs.accessBase(
  3375                     rs.findIdentInPackage(env, site.tsym, name, resultInfo.pkind),
  3376                     pos, location, site, name, true);
  3377             case ARRAY:
  3378             case CLASS:
  3379                 if (resultInfo.pt.hasTag(METHOD) || resultInfo.pt.hasTag(FORALL)) {
  3380                     return rs.resolveQualifiedMethod(
  3381                         pos, env, location, site, name, resultInfo.pt.getParameterTypes(), resultInfo.pt.getTypeArguments());
  3382                 } else if (name == names._this || name == names._super) {
  3383                     return rs.resolveSelf(pos, env, site.tsym, name);
  3384                 } else if (name == names._class) {
  3385                     // In this case, we have already made sure in
  3386                     // visitSelect that qualifier expression is a type.
  3387                     Type t = syms.classType;
  3388                     List<Type> typeargs = allowGenerics
  3389                         ? List.of(types.erasure(site))
  3390                         : List.<Type>nil();
  3391                     t = new ClassType(t.getEnclosingType(), typeargs, t.tsym);
  3392                     return new VarSymbol(
  3393                         STATIC | PUBLIC | FINAL, names._class, t, site.tsym);
  3394                 } else {
  3395                     // We are seeing a plain identifier as selector.
  3396                     Symbol sym = rs.findIdentInType(env, site, name, resultInfo.pkind);
  3397                     if ((resultInfo.pkind & ERRONEOUS) == 0)
  3398                         sym = rs.accessBase(sym, pos, location, site, name, true);
  3399                     return sym;
  3401             case WILDCARD:
  3402                 throw new AssertionError(tree);
  3403             case TYPEVAR:
  3404                 // Normally, site.getUpperBound() shouldn't be null.
  3405                 // It should only happen during memberEnter/attribBase
  3406                 // when determining the super type which *must* beac
  3407                 // done before attributing the type variables.  In
  3408                 // other words, we are seeing this illegal program:
  3409                 // class B<T> extends A<T.foo> {}
  3410                 Symbol sym = (site.getUpperBound() != null)
  3411                     ? selectSym(tree, location, capture(site.getUpperBound()), env, resultInfo)
  3412                     : null;
  3413                 if (sym == null) {
  3414                     log.error(pos, "type.var.cant.be.deref");
  3415                     return syms.errSymbol;
  3416                 } else {
  3417                     Symbol sym2 = (sym.flags() & Flags.PRIVATE) != 0 ?
  3418                         rs.new AccessError(env, site, sym) :
  3419                                 sym;
  3420                     rs.accessBase(sym2, pos, location, site, name, true);
  3421                     return sym;
  3423             case ERROR:
  3424                 // preserve identifier names through errors
  3425                 return types.createErrorType(name, site.tsym, site).tsym;
  3426             default:
  3427                 // The qualifier expression is of a primitive type -- only
  3428                 // .class is allowed for these.
  3429                 if (name == names._class) {
  3430                     // In this case, we have already made sure in Select that
  3431                     // qualifier expression is a type.
  3432                     Type t = syms.classType;
  3433                     Type arg = types.boxedClass(site).type;
  3434                     t = new ClassType(t.getEnclosingType(), List.of(arg), t.tsym);
  3435                     return new VarSymbol(
  3436                         STATIC | PUBLIC | FINAL, names._class, t, site.tsym);
  3437                 } else {
  3438                     log.error(pos, "cant.deref", site);
  3439                     return syms.errSymbol;
  3444         /** Determine type of identifier or select expression and check that
  3445          *  (1) the referenced symbol is not deprecated
  3446          *  (2) the symbol's type is safe (@see checkSafe)
  3447          *  (3) if symbol is a variable, check that its type and kind are
  3448          *      compatible with the prototype and protokind.
  3449          *  (4) if symbol is an instance field of a raw type,
  3450          *      which is being assigned to, issue an unchecked warning if its
  3451          *      type changes under erasure.
  3452          *  (5) if symbol is an instance method of a raw type, issue an
  3453          *      unchecked warning if its argument types change under erasure.
  3454          *  If checks succeed:
  3455          *    If symbol is a constant, return its constant type
  3456          *    else if symbol is a method, return its result type
  3457          *    otherwise return its type.
  3458          *  Otherwise return errType.
  3460          *  @param tree       The syntax tree representing the identifier
  3461          *  @param site       If this is a select, the type of the selected
  3462          *                    expression, otherwise the type of the current class.
  3463          *  @param sym        The symbol representing the identifier.
  3464          *  @param env        The current environment.
  3465          *  @param resultInfo    The expected result
  3466          */
  3467         Type checkId(JCTree tree,
  3468                      Type site,
  3469                      Symbol sym,
  3470                      Env<AttrContext> env,
  3471                      ResultInfo resultInfo) {
  3472             return (resultInfo.pt.hasTag(FORALL) || resultInfo.pt.hasTag(METHOD)) ?
  3473                     checkMethodId(tree, site, sym, env, resultInfo) :
  3474                     checkIdInternal(tree, site, sym, resultInfo.pt, env, resultInfo);
  3477         Type checkMethodId(JCTree tree,
  3478                      Type site,
  3479                      Symbol sym,
  3480                      Env<AttrContext> env,
  3481                      ResultInfo resultInfo) {
  3482             boolean isPolymorhicSignature =
  3483                 (sym.baseSymbol().flags() & SIGNATURE_POLYMORPHIC) != 0;
  3484             return isPolymorhicSignature ?
  3485                     checkSigPolyMethodId(tree, site, sym, env, resultInfo) :
  3486                     checkMethodIdInternal(tree, site, sym, env, resultInfo);
  3489         Type checkSigPolyMethodId(JCTree tree,
  3490                      Type site,
  3491                      Symbol sym,
  3492                      Env<AttrContext> env,
  3493                      ResultInfo resultInfo) {
  3494             //recover original symbol for signature polymorphic methods
  3495             checkMethodIdInternal(tree, site, sym.baseSymbol(), env, resultInfo);
  3496             env.info.pendingResolutionPhase = Resolve.MethodResolutionPhase.BASIC;
  3497             return sym.type;
  3500         Type checkMethodIdInternal(JCTree tree,
  3501                      Type site,
  3502                      Symbol sym,
  3503                      Env<AttrContext> env,
  3504                      ResultInfo resultInfo) {
  3505             if ((resultInfo.pkind & POLY) != 0) {
  3506                 Type pt = resultInfo.pt.map(deferredAttr.new RecoveryDeferredTypeMap(AttrMode.SPECULATIVE, sym, env.info.pendingResolutionPhase));
  3507                 Type owntype = checkIdInternal(tree, site, sym, pt, env, resultInfo);
  3508                 resultInfo.pt.map(deferredAttr.new RecoveryDeferredTypeMap(AttrMode.CHECK, sym, env.info.pendingResolutionPhase));
  3509                 return owntype;
  3510             } else {
  3511                 return checkIdInternal(tree, site, sym, resultInfo.pt, env, resultInfo);
  3515         Type checkIdInternal(JCTree tree,
  3516                      Type site,
  3517                      Symbol sym,
  3518                      Type pt,
  3519                      Env<AttrContext> env,
  3520                      ResultInfo resultInfo) {
  3521             if (pt.isErroneous()) {
  3522                 return types.createErrorType(site);
  3524             Type owntype; // The computed type of this identifier occurrence.
  3525             switch (sym.kind) {
  3526             case TYP:
  3527                 // For types, the computed type equals the symbol's type,
  3528                 // except for two situations:
  3529                 owntype = sym.type;
  3530                 if (owntype.hasTag(CLASS)) {
  3531                     chk.checkForBadAuxiliaryClassAccess(tree.pos(), env, (ClassSymbol)sym);
  3532                     Type ownOuter = owntype.getEnclosingType();
  3534                     // (a) If the symbol's type is parameterized, erase it
  3535                     // because no type parameters were given.
  3536                     // We recover generic outer type later in visitTypeApply.
  3537                     if (owntype.tsym.type.getTypeArguments().nonEmpty()) {
  3538                         owntype = types.erasure(owntype);
  3541                     // (b) If the symbol's type is an inner class, then
  3542                     // we have to interpret its outer type as a superclass
  3543                     // of the site type. Example:
  3544                     //
  3545                     // class Tree<A> { class Visitor { ... } }
  3546                     // class PointTree extends Tree<Point> { ... }
  3547                     // ...PointTree.Visitor...
  3548                     //
  3549                     // Then the type of the last expression above is
  3550                     // Tree<Point>.Visitor.
  3551                     else if (ownOuter.hasTag(CLASS) && site != ownOuter) {
  3552                         Type normOuter = site;
  3553                         if (normOuter.hasTag(CLASS)) {
  3554                             normOuter = types.asEnclosingSuper(site, ownOuter.tsym);
  3555                             if (site.isAnnotated()) {
  3556                                 // Propagate any type annotations.
  3557                                 // TODO: should asEnclosingSuper do this?
  3558                                 // Note that the type annotations in site will be updated
  3559                                 // by annotateType. Therefore, modify site instead
  3560                                 // of creating a new AnnotatedType.
  3561                                 ((AnnotatedType)site).underlyingType = normOuter;
  3562                                 normOuter = site;
  3565                         if (normOuter == null) // perhaps from an import
  3566                             normOuter = types.erasure(ownOuter);
  3567                         if (normOuter != ownOuter)
  3568                             owntype = new ClassType(
  3569                                 normOuter, List.<Type>nil(), owntype.tsym);
  3572                 break;
  3573             case VAR:
  3574                 VarSymbol v = (VarSymbol)sym;
  3575                 // Test (4): if symbol is an instance field of a raw type,
  3576                 // which is being assigned to, issue an unchecked warning if
  3577                 // its type changes under erasure.
  3578                 if (allowGenerics &&
  3579                     resultInfo.pkind == VAR &&
  3580                     v.owner.kind == TYP &&
  3581                     (v.flags() & STATIC) == 0 &&
  3582                     (site.hasTag(CLASS) || site.hasTag(TYPEVAR))) {
  3583                     Type s = types.asOuterSuper(site, v.owner);
  3584                     if (s != null &&
  3585                         s.isRaw() &&
  3586                         !types.isSameType(v.type, v.erasure(types))) {
  3587                         chk.warnUnchecked(tree.pos(),
  3588                                           "unchecked.assign.to.var",
  3589                                           v, s);
  3592                 // The computed type of a variable is the type of the
  3593                 // variable symbol, taken as a member of the site type.
  3594                 owntype = (sym.owner.kind == TYP &&
  3595                            sym.name != names._this && sym.name != names._super)
  3596                     ? types.memberType(site, sym)
  3597                     : sym.type;
  3599                 // If the variable is a constant, record constant value in
  3600                 // computed type.
  3601                 if (v.getConstValue() != null && isStaticReference(tree))
  3602                     owntype = owntype.constType(v.getConstValue());
  3604                 if (resultInfo.pkind == VAL) {
  3605                     owntype = capture(owntype); // capture "names as expressions"
  3607                 break;
  3608             case MTH: {
  3609                 owntype = checkMethod(site, sym,
  3610                         new ResultInfo(resultInfo.pkind, resultInfo.pt.getReturnType(), resultInfo.checkContext),
  3611                         env, TreeInfo.args(env.tree), resultInfo.pt.getParameterTypes(),
  3612                         resultInfo.pt.getTypeArguments());
  3613                 break;
  3615             case PCK: case ERR:
  3616                 owntype = sym.type;
  3617                 break;
  3618             default:
  3619                 throw new AssertionError("unexpected kind: " + sym.kind +
  3620                                          " in tree " + tree);
  3623             // Test (1): emit a `deprecation' warning if symbol is deprecated.
  3624             // (for constructors, the error was given when the constructor was
  3625             // resolved)
  3627             if (sym.name != names.init) {
  3628                 chk.checkDeprecated(tree.pos(), env.info.scope.owner, sym);
  3629                 chk.checkSunAPI(tree.pos(), sym);
  3630                 chk.checkProfile(tree.pos(), sym);
  3633             // Test (3): if symbol is a variable, check that its type and
  3634             // kind are compatible with the prototype and protokind.
  3635             return check(tree, owntype, sym.kind, resultInfo);
  3638         /** Check that variable is initialized and evaluate the variable's
  3639          *  initializer, if not yet done. Also check that variable is not
  3640          *  referenced before it is defined.
  3641          *  @param tree    The tree making up the variable reference.
  3642          *  @param env     The current environment.
  3643          *  @param v       The variable's symbol.
  3644          */
  3645         private void checkInit(JCTree tree,
  3646                                Env<AttrContext> env,
  3647                                VarSymbol v,
  3648                                boolean onlyWarning) {
  3649 //          System.err.println(v + " " + ((v.flags() & STATIC) != 0) + " " +
  3650 //                             tree.pos + " " + v.pos + " " +
  3651 //                             Resolve.isStatic(env));//DEBUG
  3653             // A forward reference is diagnosed if the declaration position
  3654             // of the variable is greater than the current tree position
  3655             // and the tree and variable definition occur in the same class
  3656             // definition.  Note that writes don't count as references.
  3657             // This check applies only to class and instance
  3658             // variables.  Local variables follow different scope rules,
  3659             // and are subject to definite assignment checking.
  3660             if ((env.info.enclVar == v || v.pos > tree.pos) &&
  3661                 v.owner.kind == TYP &&
  3662                 canOwnInitializer(owner(env)) &&
  3663                 v.owner == env.info.scope.owner.enclClass() &&
  3664                 ((v.flags() & STATIC) != 0) == Resolve.isStatic(env) &&
  3665                 (!env.tree.hasTag(ASSIGN) ||
  3666                  TreeInfo.skipParens(((JCAssign) env.tree).lhs) != tree)) {
  3667                 String suffix = (env.info.enclVar == v) ?
  3668                                 "self.ref" : "forward.ref";
  3669                 if (!onlyWarning || isStaticEnumField(v)) {
  3670                     log.error(tree.pos(), "illegal." + suffix);
  3671                 } else if (useBeforeDeclarationWarning) {
  3672                     log.warning(tree.pos(), suffix, v);
  3676             v.getConstValue(); // ensure initializer is evaluated
  3678             checkEnumInitializer(tree, env, v);
  3681         /**
  3682          * Check for illegal references to static members of enum.  In
  3683          * an enum type, constructors and initializers may not
  3684          * reference its static members unless they are constant.
  3686          * @param tree    The tree making up the variable reference.
  3687          * @param env     The current environment.
  3688          * @param v       The variable's symbol.
  3689          * @jls  section 8.9 Enums
  3690          */
  3691         private void checkEnumInitializer(JCTree tree, Env<AttrContext> env, VarSymbol v) {
  3692             // JLS:
  3693             //
  3694             // "It is a compile-time error to reference a static field
  3695             // of an enum type that is not a compile-time constant
  3696             // (15.28) from constructors, instance initializer blocks,
  3697             // or instance variable initializer expressions of that
  3698             // type. It is a compile-time error for the constructors,
  3699             // instance initializer blocks, or instance variable
  3700             // initializer expressions of an enum constant e to refer
  3701             // to itself or to an enum constant of the same type that
  3702             // is declared to the right of e."
  3703             if (isStaticEnumField(v)) {
  3704                 ClassSymbol enclClass = env.info.scope.owner.enclClass();
  3706                 if (enclClass == null || enclClass.owner == null)
  3707                     return;
  3709                 // See if the enclosing class is the enum (or a
  3710                 // subclass thereof) declaring v.  If not, this
  3711                 // reference is OK.
  3712                 if (v.owner != enclClass && !types.isSubtype(enclClass.type, v.owner.type))
  3713                     return;
  3715                 // If the reference isn't from an initializer, then
  3716                 // the reference is OK.
  3717                 if (!Resolve.isInitializer(env))
  3718                     return;
  3720                 log.error(tree.pos(), "illegal.enum.static.ref");
  3724         /** Is the given symbol a static, non-constant field of an Enum?
  3725          *  Note: enum literals should not be regarded as such
  3726          */
  3727         private boolean isStaticEnumField(VarSymbol v) {
  3728             return Flags.isEnum(v.owner) &&
  3729                    Flags.isStatic(v) &&
  3730                    !Flags.isConstant(v) &&
  3731                    v.name != names._class;
  3734         /** Can the given symbol be the owner of code which forms part
  3735          *  if class initialization? This is the case if the symbol is
  3736          *  a type or field, or if the symbol is the synthetic method.
  3737          *  owning a block.
  3738          */
  3739         private boolean canOwnInitializer(Symbol sym) {
  3740             return
  3741                 (sym.kind & (VAR | TYP)) != 0 ||
  3742                 (sym.kind == MTH && (sym.flags() & BLOCK) != 0);
  3745     Warner noteWarner = new Warner();
  3747     /**
  3748      * Check that method arguments conform to its instantiation.
  3749      **/
  3750     public Type checkMethod(Type site,
  3751                             Symbol sym,
  3752                             ResultInfo resultInfo,
  3753                             Env<AttrContext> env,
  3754                             final List<JCExpression> argtrees,
  3755                             List<Type> argtypes,
  3756                             List<Type> typeargtypes) {
  3757         // Test (5): if symbol is an instance method of a raw type, issue
  3758         // an unchecked warning if its argument types change under erasure.
  3759         if (allowGenerics &&
  3760             (sym.flags() & STATIC) == 0 &&
  3761             (site.hasTag(CLASS) || site.hasTag(TYPEVAR))) {
  3762             Type s = types.asOuterSuper(site, sym.owner);
  3763             if (s != null && s.isRaw() &&
  3764                 !types.isSameTypes(sym.type.getParameterTypes(),
  3765                                    sym.erasure(types).getParameterTypes())) {
  3766                 chk.warnUnchecked(env.tree.pos(),
  3767                                   "unchecked.call.mbr.of.raw.type",
  3768                                   sym, s);
  3772         if (env.info.defaultSuperCallSite != null) {
  3773             for (Type sup : types.interfaces(env.enclClass.type).prepend(types.supertype((env.enclClass.type)))) {
  3774                 if (!sup.tsym.isSubClass(sym.enclClass(), types) ||
  3775                         types.isSameType(sup, env.info.defaultSuperCallSite)) continue;
  3776                 List<MethodSymbol> icand_sup =
  3777                         types.interfaceCandidates(sup, (MethodSymbol)sym);
  3778                 if (icand_sup.nonEmpty() &&
  3779                         icand_sup.head != sym &&
  3780                         icand_sup.head.overrides(sym, icand_sup.head.enclClass(), types, true)) {
  3781                     log.error(env.tree.pos(), "illegal.default.super.call", env.info.defaultSuperCallSite,
  3782                         diags.fragment("overridden.default", sym, sup));
  3783                     break;
  3786             env.info.defaultSuperCallSite = null;
  3789         if (sym.isStatic() && site.isInterface() && env.tree.hasTag(APPLY)) {
  3790             JCMethodInvocation app = (JCMethodInvocation)env.tree;
  3791             if (app.meth.hasTag(SELECT) &&
  3792                     !TreeInfo.isStaticSelector(((JCFieldAccess)app.meth).selected, names)) {
  3793                 log.error(env.tree.pos(), "illegal.static.intf.meth.call", site);
  3797         // Compute the identifier's instantiated type.
  3798         // For methods, we need to compute the instance type by
  3799         // Resolve.instantiate from the symbol's type as well as
  3800         // any type arguments and value arguments.
  3801         noteWarner.clear();
  3802         try {
  3803             Type owntype = rs.checkMethod(
  3804                     env,
  3805                     site,
  3806                     sym,
  3807                     resultInfo,
  3808                     argtypes,
  3809                     typeargtypes,
  3810                     noteWarner);
  3812             DeferredAttr.DeferredTypeMap checkDeferredMap =
  3813                 deferredAttr.new DeferredTypeMap(DeferredAttr.AttrMode.CHECK, sym, env.info.pendingResolutionPhase);
  3815             argtypes = Type.map(argtypes, checkDeferredMap);
  3817             if (noteWarner.hasNonSilentLint(LintCategory.UNCHECKED)) {
  3818                 chk.warnUnchecked(env.tree.pos(),
  3819                         "unchecked.meth.invocation.applied",
  3820                         kindName(sym),
  3821                         sym.name,
  3822                         rs.methodArguments(sym.type.getParameterTypes()),
  3823                         rs.methodArguments(Type.map(argtypes, checkDeferredMap)),
  3824                         kindName(sym.location()),
  3825                         sym.location());
  3826                owntype = new MethodType(owntype.getParameterTypes(),
  3827                        types.erasure(owntype.getReturnType()),
  3828                        types.erasure(owntype.getThrownTypes()),
  3829                        syms.methodClass);
  3832             return chk.checkMethod(owntype, sym, env, argtrees, argtypes, env.info.lastResolveVarargs(),
  3833                     resultInfo.checkContext.inferenceContext());
  3834         } catch (Infer.InferenceException ex) {
  3835             //invalid target type - propagate exception outwards or report error
  3836             //depending on the current check context
  3837             resultInfo.checkContext.report(env.tree.pos(), ex.getDiagnostic());
  3838             return types.createErrorType(site);
  3839         } catch (Resolve.InapplicableMethodException ex) {
  3840             Assert.error(ex.getDiagnostic().getMessage(Locale.getDefault()));
  3841             return null;
  3845     public void visitLiteral(JCLiteral tree) {
  3846         result = check(
  3847             tree, litType(tree.typetag).constType(tree.value), VAL, resultInfo);
  3849     //where
  3850     /** Return the type of a literal with given type tag.
  3851      */
  3852     Type litType(TypeTag tag) {
  3853         return (tag == CLASS) ? syms.stringType : syms.typeOfTag[tag.ordinal()];
  3856     public void visitTypeIdent(JCPrimitiveTypeTree tree) {
  3857         result = check(tree, syms.typeOfTag[tree.typetag.ordinal()], TYP, resultInfo);
  3860     public void visitTypeArray(JCArrayTypeTree tree) {
  3861         Type etype = attribType(tree.elemtype, env);
  3862         Type type = new ArrayType(etype, syms.arrayClass);
  3863         result = check(tree, type, TYP, resultInfo);
  3866     /** Visitor method for parameterized types.
  3867      *  Bound checking is left until later, since types are attributed
  3868      *  before supertype structure is completely known
  3869      */
  3870     public void visitTypeApply(JCTypeApply tree) {
  3871         Type owntype = types.createErrorType(tree.type);
  3873         // Attribute functor part of application and make sure it's a class.
  3874         Type clazztype = chk.checkClassType(tree.clazz.pos(), attribType(tree.clazz, env));
  3876         // Attribute type parameters
  3877         List<Type> actuals = attribTypes(tree.arguments, env);
  3879         if (clazztype.hasTag(CLASS)) {
  3880             List<Type> formals = clazztype.tsym.type.getTypeArguments();
  3881             if (actuals.isEmpty()) //diamond
  3882                 actuals = formals;
  3884             if (actuals.length() == formals.length()) {
  3885                 List<Type> a = actuals;
  3886                 List<Type> f = formals;
  3887                 while (a.nonEmpty()) {
  3888                     a.head = a.head.withTypeVar(f.head);
  3889                     a = a.tail;
  3890                     f = f.tail;
  3892                 // Compute the proper generic outer
  3893                 Type clazzOuter = clazztype.getEnclosingType();
  3894                 if (clazzOuter.hasTag(CLASS)) {
  3895                     Type site;
  3896                     JCExpression clazz = TreeInfo.typeIn(tree.clazz);
  3897                     if (clazz.hasTag(IDENT)) {
  3898                         site = env.enclClass.sym.type;
  3899                     } else if (clazz.hasTag(SELECT)) {
  3900                         site = ((JCFieldAccess) clazz).selected.type;
  3901                     } else throw new AssertionError(""+tree);
  3902                     if (clazzOuter.hasTag(CLASS) && site != clazzOuter) {
  3903                         if (site.hasTag(CLASS))
  3904                             site = types.asOuterSuper(site, clazzOuter.tsym);
  3905                         if (site == null)
  3906                             site = types.erasure(clazzOuter);
  3907                         clazzOuter = site;
  3910                 owntype = new ClassType(clazzOuter, actuals, clazztype.tsym);
  3911                 if (clazztype.isAnnotated()) {
  3912                     // Use the same AnnotatedType, because it will have
  3913                     // its annotations set later.
  3914                     ((AnnotatedType)clazztype).underlyingType = owntype;
  3915                     owntype = clazztype;
  3917             } else {
  3918                 if (formals.length() != 0) {
  3919                     log.error(tree.pos(), "wrong.number.type.args",
  3920                               Integer.toString(formals.length()));
  3921                 } else {
  3922                     log.error(tree.pos(), "type.doesnt.take.params", clazztype.tsym);
  3924                 owntype = types.createErrorType(tree.type);
  3927         result = check(tree, owntype, TYP, resultInfo);
  3930     public void visitTypeUnion(JCTypeUnion tree) {
  3931         ListBuffer<Type> multicatchTypes = ListBuffer.lb();
  3932         ListBuffer<Type> all_multicatchTypes = null; // lazy, only if needed
  3933         for (JCExpression typeTree : tree.alternatives) {
  3934             Type ctype = attribType(typeTree, env);
  3935             ctype = chk.checkType(typeTree.pos(),
  3936                           chk.checkClassType(typeTree.pos(), ctype),
  3937                           syms.throwableType);
  3938             if (!ctype.isErroneous()) {
  3939                 //check that alternatives of a union type are pairwise
  3940                 //unrelated w.r.t. subtyping
  3941                 if (chk.intersects(ctype,  multicatchTypes.toList())) {
  3942                     for (Type t : multicatchTypes) {
  3943                         boolean sub = types.isSubtype(ctype, t);
  3944                         boolean sup = types.isSubtype(t, ctype);
  3945                         if (sub || sup) {
  3946                             //assume 'a' <: 'b'
  3947                             Type a = sub ? ctype : t;
  3948                             Type b = sub ? t : ctype;
  3949                             log.error(typeTree.pos(), "multicatch.types.must.be.disjoint", a, b);
  3953                 multicatchTypes.append(ctype);
  3954                 if (all_multicatchTypes != null)
  3955                     all_multicatchTypes.append(ctype);
  3956             } else {
  3957                 if (all_multicatchTypes == null) {
  3958                     all_multicatchTypes = ListBuffer.lb();
  3959                     all_multicatchTypes.appendList(multicatchTypes);
  3961                 all_multicatchTypes.append(ctype);
  3964         Type t = check(tree, types.lub(multicatchTypes.toList()), TYP, resultInfo);
  3965         if (t.hasTag(CLASS)) {
  3966             List<Type> alternatives =
  3967                 ((all_multicatchTypes == null) ? multicatchTypes : all_multicatchTypes).toList();
  3968             t = new UnionClassType((ClassType) t, alternatives);
  3970         tree.type = result = t;
  3973     public void visitTypeIntersection(JCTypeIntersection tree) {
  3974         attribTypes(tree.bounds, env);
  3975         tree.type = result = checkIntersection(tree, tree.bounds);
  3978     public void visitTypeParameter(JCTypeParameter tree) {
  3979         TypeVar typeVar = (TypeVar) tree.type;
  3981         if (tree.annotations != null && tree.annotations.nonEmpty()) {
  3982             AnnotatedType antype = new AnnotatedType(typeVar);
  3983             annotateType(antype, tree.annotations);
  3984             tree.type = antype;
  3987         if (!typeVar.bound.isErroneous()) {
  3988             //fixup type-parameter bound computed in 'attribTypeVariables'
  3989             typeVar.bound = checkIntersection(tree, tree.bounds);
  3993     Type checkIntersection(JCTree tree, List<JCExpression> bounds) {
  3994         Set<Type> boundSet = new HashSet<Type>();
  3995         if (bounds.nonEmpty()) {
  3996             // accept class or interface or typevar as first bound.
  3997             bounds.head.type = checkBase(bounds.head.type, bounds.head, env, false, false, false);
  3998             boundSet.add(types.erasure(bounds.head.type));
  3999             if (bounds.head.type.isErroneous()) {
  4000                 return bounds.head.type;
  4002             else if (bounds.head.type.hasTag(TYPEVAR)) {
  4003                 // if first bound was a typevar, do not accept further bounds.
  4004                 if (bounds.tail.nonEmpty()) {
  4005                     log.error(bounds.tail.head.pos(),
  4006                               "type.var.may.not.be.followed.by.other.bounds");
  4007                     return bounds.head.type;
  4009             } else {
  4010                 // if first bound was a class or interface, accept only interfaces
  4011                 // as further bounds.
  4012                 for (JCExpression bound : bounds.tail) {
  4013                     bound.type = checkBase(bound.type, bound, env, false, true, false);
  4014                     if (bound.type.isErroneous()) {
  4015                         bounds = List.of(bound);
  4017                     else if (bound.type.hasTag(CLASS)) {
  4018                         chk.checkNotRepeated(bound.pos(), types.erasure(bound.type), boundSet);
  4024         if (bounds.length() == 0) {
  4025             return syms.objectType;
  4026         } else if (bounds.length() == 1) {
  4027             return bounds.head.type;
  4028         } else {
  4029             Type owntype = types.makeCompoundType(TreeInfo.types(bounds));
  4030             if (tree.hasTag(TYPEINTERSECTION)) {
  4031                 ((IntersectionClassType)owntype).intersectionKind =
  4032                         IntersectionClassType.IntersectionKind.EXPLICIT;
  4034             // ... the variable's bound is a class type flagged COMPOUND
  4035             // (see comment for TypeVar.bound).
  4036             // In this case, generate a class tree that represents the
  4037             // bound class, ...
  4038             JCExpression extending;
  4039             List<JCExpression> implementing;
  4040             if (!bounds.head.type.isInterface()) {
  4041                 extending = bounds.head;
  4042                 implementing = bounds.tail;
  4043             } else {
  4044                 extending = null;
  4045                 implementing = bounds;
  4047             JCClassDecl cd = make.at(tree).ClassDef(
  4048                 make.Modifiers(PUBLIC | ABSTRACT),
  4049                 names.empty, List.<JCTypeParameter>nil(),
  4050                 extending, implementing, List.<JCTree>nil());
  4052             ClassSymbol c = (ClassSymbol)owntype.tsym;
  4053             Assert.check((c.flags() & COMPOUND) != 0);
  4054             cd.sym = c;
  4055             c.sourcefile = env.toplevel.sourcefile;
  4057             // ... and attribute the bound class
  4058             c.flags_field |= UNATTRIBUTED;
  4059             Env<AttrContext> cenv = enter.classEnv(cd, env);
  4060             enter.typeEnvs.put(c, cenv);
  4061             attribClass(c);
  4062             return owntype;
  4066     public void visitWildcard(JCWildcard tree) {
  4067         //- System.err.println("visitWildcard("+tree+");");//DEBUG
  4068         Type type = (tree.kind.kind == BoundKind.UNBOUND)
  4069             ? syms.objectType
  4070             : attribType(tree.inner, env);
  4071         result = check(tree, new WildcardType(chk.checkRefType(tree.pos(), type),
  4072                                               tree.kind.kind,
  4073                                               syms.boundClass),
  4074                        TYP, resultInfo);
  4077     public void visitAnnotation(JCAnnotation tree) {
  4078         log.error(tree.pos(), "annotation.not.valid.for.type", pt());
  4079         result = tree.type = syms.errType;
  4082     public void visitAnnotatedType(JCAnnotatedType tree) {
  4083         Type underlyingType = attribType(tree.getUnderlyingType(), env);
  4084         this.attribAnnotationTypes(tree.annotations, env);
  4085         AnnotatedType antype = new AnnotatedType(underlyingType);
  4086         annotateType(antype, tree.annotations);
  4087         result = tree.type = antype;
  4090     /**
  4091      * Apply the annotations to the particular type.
  4092      */
  4093     public void annotateType(final AnnotatedType type, final List<JCAnnotation> annotations) {
  4094         if (annotations.isEmpty())
  4095             return;
  4096         annotate.typeAnnotation(new Annotate.Annotator() {
  4097             @Override
  4098             public String toString() {
  4099                 return "annotate " + annotations + " onto " + type;
  4101             @Override
  4102             public void enterAnnotation() {
  4103                 List<Attribute.TypeCompound> compounds = fromAnnotations(annotations);
  4104                 type.typeAnnotations = compounds;
  4106         });
  4109     private static List<Attribute.TypeCompound> fromAnnotations(List<JCAnnotation> annotations) {
  4110         if (annotations.isEmpty())
  4111             return List.nil();
  4113         ListBuffer<Attribute.TypeCompound> buf = ListBuffer.lb();
  4114         for (JCAnnotation anno : annotations) {
  4115             if (anno.attribute != null) {
  4116                 // TODO: this null-check is only needed for an obscure
  4117                 // ordering issue, where annotate.flush is called when
  4118                 // the attribute is not set yet. For an example failure
  4119                 // try the referenceinfos/NestedTypes.java test.
  4120                 // Any better solutions?
  4121                 buf.append((Attribute.TypeCompound) anno.attribute);
  4124         return buf.toList();
  4127     public void visitErroneous(JCErroneous tree) {
  4128         if (tree.errs != null)
  4129             for (JCTree err : tree.errs)
  4130                 attribTree(err, env, new ResultInfo(ERR, pt()));
  4131         result = tree.type = syms.errType;
  4134     /** Default visitor method for all other trees.
  4135      */
  4136     public void visitTree(JCTree tree) {
  4137         throw new AssertionError();
  4140     /**
  4141      * Attribute an env for either a top level tree or class declaration.
  4142      */
  4143     public void attrib(Env<AttrContext> env) {
  4144         if (env.tree.hasTag(TOPLEVEL))
  4145             attribTopLevel(env);
  4146         else
  4147             attribClass(env.tree.pos(), env.enclClass.sym);
  4150     /**
  4151      * Attribute a top level tree. These trees are encountered when the
  4152      * package declaration has annotations.
  4153      */
  4154     public void attribTopLevel(Env<AttrContext> env) {
  4155         JCCompilationUnit toplevel = env.toplevel;
  4156         try {
  4157             annotate.flush();
  4158             chk.validateAnnotations(toplevel.packageAnnotations, toplevel.packge);
  4159         } catch (CompletionFailure ex) {
  4160             chk.completionError(toplevel.pos(), ex);
  4164     /** Main method: attribute class definition associated with given class symbol.
  4165      *  reporting completion failures at the given position.
  4166      *  @param pos The source position at which completion errors are to be
  4167      *             reported.
  4168      *  @param c   The class symbol whose definition will be attributed.
  4169      */
  4170     public void attribClass(DiagnosticPosition pos, ClassSymbol c) {
  4171         try {
  4172             annotate.flush();
  4173             attribClass(c);
  4174         } catch (CompletionFailure ex) {
  4175             chk.completionError(pos, ex);
  4179     /** Attribute class definition associated with given class symbol.
  4180      *  @param c   The class symbol whose definition will be attributed.
  4181      */
  4182     void attribClass(ClassSymbol c) throws CompletionFailure {
  4183         if (c.type.hasTag(ERROR)) return;
  4185         // Check for cycles in the inheritance graph, which can arise from
  4186         // ill-formed class files.
  4187         chk.checkNonCyclic(null, c.type);
  4189         Type st = types.supertype(c.type);
  4190         if ((c.flags_field & Flags.COMPOUND) == 0) {
  4191             // First, attribute superclass.
  4192             if (st.hasTag(CLASS))
  4193                 attribClass((ClassSymbol)st.tsym);
  4195             // Next attribute owner, if it is a class.
  4196             if (c.owner.kind == TYP && c.owner.type.hasTag(CLASS))
  4197                 attribClass((ClassSymbol)c.owner);
  4200         // The previous operations might have attributed the current class
  4201         // if there was a cycle. So we test first whether the class is still
  4202         // UNATTRIBUTED.
  4203         if ((c.flags_field & UNATTRIBUTED) != 0) {
  4204             c.flags_field &= ~UNATTRIBUTED;
  4206             // Get environment current at the point of class definition.
  4207             Env<AttrContext> env = enter.typeEnvs.get(c);
  4209             // The info.lint field in the envs stored in enter.typeEnvs is deliberately uninitialized,
  4210             // because the annotations were not available at the time the env was created. Therefore,
  4211             // we look up the environment chain for the first enclosing environment for which the
  4212             // lint value is set. Typically, this is the parent env, but might be further if there
  4213             // are any envs created as a result of TypeParameter nodes.
  4214             Env<AttrContext> lintEnv = env;
  4215             while (lintEnv.info.lint == null)
  4216                 lintEnv = lintEnv.next;
  4218             // Having found the enclosing lint value, we can initialize the lint value for this class
  4219             env.info.lint = lintEnv.info.lint.augment(c);
  4221             Lint prevLint = chk.setLint(env.info.lint);
  4222             JavaFileObject prev = log.useSource(c.sourcefile);
  4223             ResultInfo prevReturnRes = env.info.returnResult;
  4225             try {
  4226                 env.info.returnResult = null;
  4227                 // java.lang.Enum may not be subclassed by a non-enum
  4228                 if (st.tsym == syms.enumSym &&
  4229                     ((c.flags_field & (Flags.ENUM|Flags.COMPOUND)) == 0))
  4230                     log.error(env.tree.pos(), "enum.no.subclassing");
  4232                 // Enums may not be extended by source-level classes
  4233                 if (st.tsym != null &&
  4234                     ((st.tsym.flags_field & Flags.ENUM) != 0) &&
  4235                     ((c.flags_field & (Flags.ENUM | Flags.COMPOUND)) == 0)) {
  4236                     log.error(env.tree.pos(), "enum.types.not.extensible");
  4238                 attribClassBody(env, c);
  4240                 chk.checkDeprecatedAnnotation(env.tree.pos(), c);
  4241                 chk.checkClassOverrideEqualsAndHashIfNeeded(env.tree.pos(), c);
  4242             } finally {
  4243                 env.info.returnResult = prevReturnRes;
  4244                 log.useSource(prev);
  4245                 chk.setLint(prevLint);
  4251     public void visitImport(JCImport tree) {
  4252         // nothing to do
  4255     /** Finish the attribution of a class. */
  4256     private void attribClassBody(Env<AttrContext> env, ClassSymbol c) {
  4257         JCClassDecl tree = (JCClassDecl)env.tree;
  4258         Assert.check(c == tree.sym);
  4260         // Validate annotations
  4261         chk.validateAnnotations(tree.mods.annotations, c);
  4263         // Validate type parameters, supertype and interfaces.
  4264         attribStats(tree.typarams, env);
  4265         if (!c.isAnonymous()) {
  4266             //already checked if anonymous
  4267             chk.validate(tree.typarams, env);
  4268             chk.validate(tree.extending, env);
  4269             chk.validate(tree.implementing, env);
  4272         // If this is a non-abstract class, check that it has no abstract
  4273         // methods or unimplemented methods of an implemented interface.
  4274         if ((c.flags() & (ABSTRACT | INTERFACE)) == 0) {
  4275             if (!relax)
  4276                 chk.checkAllDefined(tree.pos(), c);
  4279         if ((c.flags() & ANNOTATION) != 0) {
  4280             if (tree.implementing.nonEmpty())
  4281                 log.error(tree.implementing.head.pos(),
  4282                           "cant.extend.intf.annotation");
  4283             if (tree.typarams.nonEmpty())
  4284                 log.error(tree.typarams.head.pos(),
  4285                           "intf.annotation.cant.have.type.params");
  4287             // If this annotation has a @Repeatable, validate
  4288             Attribute.Compound repeatable = c.attribute(syms.repeatableType.tsym);
  4289             if (repeatable != null) {
  4290                 // get diagnostic position for error reporting
  4291                 DiagnosticPosition cbPos = getDiagnosticPosition(tree, repeatable.type);
  4292                 Assert.checkNonNull(cbPos);
  4294                 chk.validateRepeatable(c, repeatable, cbPos);
  4296         } else {
  4297             // Check that all extended classes and interfaces
  4298             // are compatible (i.e. no two define methods with same arguments
  4299             // yet different return types).  (JLS 8.4.6.3)
  4300             chk.checkCompatibleSupertypes(tree.pos(), c.type);
  4301             if (allowDefaultMethods) {
  4302                 chk.checkDefaultMethodClashes(tree.pos(), c.type);
  4306         // Check that class does not import the same parameterized interface
  4307         // with two different argument lists.
  4308         chk.checkClassBounds(tree.pos(), c.type);
  4310         tree.type = c.type;
  4312         for (List<JCTypeParameter> l = tree.typarams;
  4313              l.nonEmpty(); l = l.tail) {
  4314              Assert.checkNonNull(env.info.scope.lookup(l.head.name).scope);
  4317         // Check that a generic class doesn't extend Throwable
  4318         if (!c.type.allparams().isEmpty() && types.isSubtype(c.type, syms.throwableType))
  4319             log.error(tree.extending.pos(), "generic.throwable");
  4321         // Check that all methods which implement some
  4322         // method conform to the method they implement.
  4323         chk.checkImplementations(tree);
  4325         //check that a resource implementing AutoCloseable cannot throw InterruptedException
  4326         checkAutoCloseable(tree.pos(), env, c.type);
  4328         for (List<JCTree> l = tree.defs; l.nonEmpty(); l = l.tail) {
  4329             // Attribute declaration
  4330             attribStat(l.head, env);
  4331             // Check that declarations in inner classes are not static (JLS 8.1.2)
  4332             // Make an exception for static constants.
  4333             if (c.owner.kind != PCK &&
  4334                 ((c.flags() & STATIC) == 0 || c.name == names.empty) &&
  4335                 (TreeInfo.flags(l.head) & (STATIC | INTERFACE)) != 0) {
  4336                 Symbol sym = null;
  4337                 if (l.head.hasTag(VARDEF)) sym = ((JCVariableDecl) l.head).sym;
  4338                 if (sym == null ||
  4339                     sym.kind != VAR ||
  4340                     ((VarSymbol) sym).getConstValue() == null)
  4341                     log.error(l.head.pos(), "icls.cant.have.static.decl", c);
  4345         // Check for cycles among non-initial constructors.
  4346         chk.checkCyclicConstructors(tree);
  4348         // Check for cycles among annotation elements.
  4349         chk.checkNonCyclicElements(tree);
  4351         // Check for proper use of serialVersionUID
  4352         if (env.info.lint.isEnabled(LintCategory.SERIAL) &&
  4353             isSerializable(c) &&
  4354             (c.flags() & Flags.ENUM) == 0 &&
  4355             checkForSerial(c)) {
  4356             checkSerialVersionUID(tree, c);
  4358         if (allowTypeAnnos) {
  4359             // Correctly organize the postions of the type annotations
  4360             TypeAnnotations.organizeTypeAnnotationsBodies(this.syms, this.names, this.log, tree);
  4362             // Check type annotations applicability rules
  4363             validateTypeAnnotations(tree);
  4366         // where
  4367         boolean checkForSerial(ClassSymbol c) {
  4368             if ((c.flags() & ABSTRACT) == 0) {
  4369                 return true;
  4370             } else {
  4371                 return c.members().anyMatch(anyNonAbstractOrDefaultMethod);
  4375         public static final Filter<Symbol> anyNonAbstractOrDefaultMethod = new Filter<Symbol>() {
  4376             @Override
  4377             public boolean accepts(Symbol s) {
  4378                 return s.kind == Kinds.MTH &&
  4379                        (s.flags() & (DEFAULT | ABSTRACT)) != ABSTRACT;
  4381         };
  4383         /** get a diagnostic position for an attribute of Type t, or null if attribute missing */
  4384         private DiagnosticPosition getDiagnosticPosition(JCClassDecl tree, Type t) {
  4385             for(List<JCAnnotation> al = tree.mods.annotations; !al.isEmpty(); al = al.tail) {
  4386                 if (types.isSameType(al.head.annotationType.type, t))
  4387                     return al.head.pos();
  4390             return null;
  4393         /** check if a class is a subtype of Serializable, if that is available. */
  4394         private boolean isSerializable(ClassSymbol c) {
  4395             try {
  4396                 syms.serializableType.complete();
  4398             catch (CompletionFailure e) {
  4399                 return false;
  4401             return types.isSubtype(c.type, syms.serializableType);
  4404         /** Check that an appropriate serialVersionUID member is defined. */
  4405         private void checkSerialVersionUID(JCClassDecl tree, ClassSymbol c) {
  4407             // check for presence of serialVersionUID
  4408             Scope.Entry e = c.members().lookup(names.serialVersionUID);
  4409             while (e.scope != null && e.sym.kind != VAR) e = e.next();
  4410             if (e.scope == null) {
  4411                 log.warning(LintCategory.SERIAL,
  4412                         tree.pos(), "missing.SVUID", c);
  4413                 return;
  4416             // check that it is static final
  4417             VarSymbol svuid = (VarSymbol)e.sym;
  4418             if ((svuid.flags() & (STATIC | FINAL)) !=
  4419                 (STATIC | FINAL))
  4420                 log.warning(LintCategory.SERIAL,
  4421                         TreeInfo.diagnosticPositionFor(svuid, tree), "improper.SVUID", c);
  4423             // check that it is long
  4424             else if (!svuid.type.hasTag(LONG))
  4425                 log.warning(LintCategory.SERIAL,
  4426                         TreeInfo.diagnosticPositionFor(svuid, tree), "long.SVUID", c);
  4428             // check constant
  4429             else if (svuid.getConstValue() == null)
  4430                 log.warning(LintCategory.SERIAL,
  4431                         TreeInfo.diagnosticPositionFor(svuid, tree), "constant.SVUID", c);
  4434     private Type capture(Type type) {
  4435         return types.capture(type);
  4438     private void validateTypeAnnotations(JCTree tree) {
  4439         tree.accept(typeAnnotationsValidator);
  4441     //where
  4442     private final JCTree.Visitor typeAnnotationsValidator = new TreeScanner() {
  4444         private boolean checkAllAnnotations = false;
  4446         public void visitAnnotation(JCAnnotation tree) {
  4447             if (tree.hasTag(TYPE_ANNOTATION) || checkAllAnnotations) {
  4448                 chk.validateTypeAnnotation(tree, false);
  4450             super.visitAnnotation(tree);
  4452         public void visitTypeParameter(JCTypeParameter tree) {
  4453             chk.validateTypeAnnotations(tree.annotations, true);
  4454             scan(tree.bounds);
  4455             // Don't call super.
  4456             // This is needed because above we call validateTypeAnnotation with
  4457             // false, which would forbid annotations on type parameters.
  4458             // super.visitTypeParameter(tree);
  4460         public void visitMethodDef(JCMethodDecl tree) {
  4461             if (tree.recvparam != null &&
  4462                     tree.recvparam.vartype.type.getKind() != TypeKind.ERROR) {
  4463                 checkForDeclarationAnnotations(tree.recvparam.mods.annotations,
  4464                         tree.recvparam.vartype.type.tsym);
  4466             if (tree.restype != null && tree.restype.type != null) {
  4467                 validateAnnotatedType(tree.restype, tree.restype.type);
  4469             super.visitMethodDef(tree);
  4471         public void visitVarDef(final JCVariableDecl tree) {
  4472             if (tree.sym != null && tree.sym.type != null)
  4473                 validateAnnotatedType(tree, tree.sym.type);
  4474             super.visitVarDef(tree);
  4476         public void visitTypeCast(JCTypeCast tree) {
  4477             if (tree.clazz != null && tree.clazz.type != null)
  4478                 validateAnnotatedType(tree.clazz, tree.clazz.type);
  4479             super.visitTypeCast(tree);
  4481         public void visitTypeTest(JCInstanceOf tree) {
  4482             if (tree.clazz != null && tree.clazz.type != null)
  4483                 validateAnnotatedType(tree.clazz, tree.clazz.type);
  4484             super.visitTypeTest(tree);
  4486         public void visitNewClass(JCNewClass tree) {
  4487             if (tree.clazz.hasTag(ANNOTATED_TYPE)) {
  4488                 boolean prevCheck = this.checkAllAnnotations;
  4489                 try {
  4490                     this.checkAllAnnotations = true;
  4491                     scan(((JCAnnotatedType)tree.clazz).annotations);
  4492                 } finally {
  4493                     this.checkAllAnnotations = prevCheck;
  4496             super.visitNewClass(tree);
  4498         public void visitNewArray(JCNewArray tree) {
  4499             if (tree.elemtype != null && tree.elemtype.hasTag(ANNOTATED_TYPE)) {
  4500                 boolean prevCheck = this.checkAllAnnotations;
  4501                 try {
  4502                     this.checkAllAnnotations = true;
  4503                     scan(((JCAnnotatedType)tree.elemtype).annotations);
  4504                 } finally {
  4505                     this.checkAllAnnotations = prevCheck;
  4508             super.visitNewArray(tree);
  4511         /* I would want to model this after
  4512          * com.sun.tools.javac.comp.Check.Validator.visitSelectInternal(JCFieldAccess)
  4513          * and override visitSelect and visitTypeApply.
  4514          * However, we only set the annotated type in the top-level type
  4515          * of the symbol.
  4516          * Therefore, we need to override each individual location where a type
  4517          * can occur.
  4518          */
  4519         private void validateAnnotatedType(final JCTree errtree, final Type type) {
  4520             if (type.getEnclosingType() != null &&
  4521                     type != type.getEnclosingType()) {
  4522                 validateEnclosingAnnotatedType(errtree, type.getEnclosingType());
  4524             for (Type targ : type.getTypeArguments()) {
  4525                 validateAnnotatedType(errtree, targ);
  4528         private void validateEnclosingAnnotatedType(final JCTree errtree, final Type type) {
  4529             validateAnnotatedType(errtree, type);
  4530             if (type.tsym != null &&
  4531                     type.tsym.isStatic() &&
  4532                     type.getAnnotationMirrors().nonEmpty()) {
  4533                     // Enclosing static classes cannot have type annotations.
  4534                 log.error(errtree.pos(), "cant.annotate.static.class");
  4537     };
  4539     // <editor-fold desc="post-attribution visitor">
  4541     /**
  4542      * Handle missing types/symbols in an AST. This routine is useful when
  4543      * the compiler has encountered some errors (which might have ended up
  4544      * terminating attribution abruptly); if the compiler is used in fail-over
  4545      * mode (e.g. by an IDE) and the AST contains semantic errors, this routine
  4546      * prevents NPE to be progagated during subsequent compilation steps.
  4547      */
  4548     public void postAttr(JCTree tree) {
  4549         new PostAttrAnalyzer().scan(tree);
  4552     class PostAttrAnalyzer extends TreeScanner {
  4554         private void initTypeIfNeeded(JCTree that) {
  4555             if (that.type == null) {
  4556                 that.type = syms.unknownType;
  4560         @Override
  4561         public void scan(JCTree tree) {
  4562             if (tree == null) return;
  4563             if (tree instanceof JCExpression) {
  4564                 initTypeIfNeeded(tree);
  4566             super.scan(tree);
  4569         @Override
  4570         public void visitIdent(JCIdent that) {
  4571             if (that.sym == null) {
  4572                 that.sym = syms.unknownSymbol;
  4576         @Override
  4577         public void visitSelect(JCFieldAccess that) {
  4578             if (that.sym == null) {
  4579                 that.sym = syms.unknownSymbol;
  4581             super.visitSelect(that);
  4584         @Override
  4585         public void visitClassDef(JCClassDecl that) {
  4586             initTypeIfNeeded(that);
  4587             if (that.sym == null) {
  4588                 that.sym = new ClassSymbol(0, that.name, that.type, syms.noSymbol);
  4590             super.visitClassDef(that);
  4593         @Override
  4594         public void visitMethodDef(JCMethodDecl that) {
  4595             initTypeIfNeeded(that);
  4596             if (that.sym == null) {
  4597                 that.sym = new MethodSymbol(0, that.name, that.type, syms.noSymbol);
  4599             super.visitMethodDef(that);
  4602         @Override
  4603         public void visitVarDef(JCVariableDecl that) {
  4604             initTypeIfNeeded(that);
  4605             if (that.sym == null) {
  4606                 that.sym = new VarSymbol(0, that.name, that.type, syms.noSymbol);
  4607                 that.sym.adr = 0;
  4609             super.visitVarDef(that);
  4612         @Override
  4613         public void visitNewClass(JCNewClass that) {
  4614             if (that.constructor == null) {
  4615                 that.constructor = new MethodSymbol(0, names.init, syms.unknownType, syms.noSymbol);
  4617             if (that.constructorType == null) {
  4618                 that.constructorType = syms.unknownType;
  4620             super.visitNewClass(that);
  4623         @Override
  4624         public void visitAssignop(JCAssignOp that) {
  4625             if (that.operator == null)
  4626                 that.operator = new OperatorSymbol(names.empty, syms.unknownType, -1, syms.noSymbol);
  4627             super.visitAssignop(that);
  4630         @Override
  4631         public void visitBinary(JCBinary that) {
  4632             if (that.operator == null)
  4633                 that.operator = new OperatorSymbol(names.empty, syms.unknownType, -1, syms.noSymbol);
  4634             super.visitBinary(that);
  4637         @Override
  4638         public void visitUnary(JCUnary that) {
  4639             if (that.operator == null)
  4640                 that.operator = new OperatorSymbol(names.empty, syms.unknownType, -1, syms.noSymbol);
  4641             super.visitUnary(that);
  4644         @Override
  4645         public void visitLambda(JCLambda that) {
  4646             super.visitLambda(that);
  4647             if (that.descriptorType == null) {
  4648                 that.descriptorType = syms.unknownType;
  4650             if (that.targets == null) {
  4651                 that.targets = List.nil();
  4655         @Override
  4656         public void visitReference(JCMemberReference that) {
  4657             super.visitReference(that);
  4658             if (that.sym == null) {
  4659                 that.sym = new MethodSymbol(0, names.empty, syms.unknownType, syms.noSymbol);
  4661             if (that.descriptorType == null) {
  4662                 that.descriptorType = syms.unknownType;
  4664             if (that.targets == null) {
  4665                 that.targets = List.nil();
  4669     // </editor-fold>

mercurial