src/jdk.compiler/share/classes/com/sun/tools/javac/tree/TreeMaker.java
author jlahoda
Mon, 21 Oct 2019 15:38:26 +0200
changeset 58713 ad69fd32778e
parent 55306 ea43db53de91
child 59021 cfc7bb9a5a92
permissions -rw-r--r--
8226585: Improve javac messages for using a preview API Summary: Avoiding deprecation for removal for APIs associated with preview features, the features are marked with an annotation, and errors/warnings are produced for them based on the annotation. Reviewed-by: erikj, mcimadamore, alanb Contributed-by: joe.darcy@oracle.com, jan.lahoda@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
55306
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 52455
diff changeset
     2
 * Copyright (c) 1999, 2019, Oracle and/or its affiliates. All rights reserved.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
06bc494ca11e Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 5492
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 5492
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    10
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
06bc494ca11e Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
06bc494ca11e Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
06bc494ca11e Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
06bc494ca11e Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
06bc494ca11e Initial load
duke
parents:
diff changeset
    16
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
06bc494ca11e Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
06bc494ca11e Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
06bc494ca11e Initial load
duke
parents:
diff changeset
    20
 *
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 5492
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 5492
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 5492
diff changeset
    23
 * questions.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    24
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    25
06bc494ca11e Initial load
duke
parents:
diff changeset
    26
package com.sun.tools.javac.tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
25443
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 25440
diff changeset
    28
import java.util.Iterator;
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 25440
diff changeset
    29
58713
ad69fd32778e 8226585: Improve javac messages for using a preview API
jlahoda
parents: 55306
diff changeset
    30
import com.sun.source.tree.CaseTree;
42407
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 36526
diff changeset
    31
import com.sun.source.tree.ModuleTree.ModuleKind;
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 36526
diff changeset
    32
import com.sun.source.tree.Tree.Kind;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
import com.sun.tools.javac.code.*;
50400
dcbbc6fb0b69 8200166: Repeating annotations refering to to-be-generated classes don't work.
jlahoda
parents: 47216
diff changeset
    34
import com.sun.tools.javac.code.Attribute.UnresolvedClass;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    35
import com.sun.tools.javac.code.Symbol.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
import com.sun.tools.javac.code.Type.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
import com.sun.tools.javac.util.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
import com.sun.tools.javac.util.JCDiagnostic.DiagnosticPosition;
06bc494ca11e Initial load
duke
parents:
diff changeset
    39
06bc494ca11e Initial load
duke
parents:
diff changeset
    40
import com.sun.tools.javac.tree.JCTree.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
06bc494ca11e Initial load
duke
parents:
diff changeset
    42
import static com.sun.tools.javac.code.Flags.*;
27224
228abfa87080 8054457: Refactor Symbol kinds from small ints to an enum
emc
parents: 25874
diff changeset
    43
import static com.sun.tools.javac.code.Kinds.Kind.*;
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 13845
diff changeset
    44
import static com.sun.tools.javac.code.TypeTag.*;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    45
06bc494ca11e Initial load
duke
parents:
diff changeset
    46
/** Factory class for trees.
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
 *
5847
1908176fd6e3 6944312: Potential rebranding issues in openjdk/langtools repository sources
jjg
parents: 5520
diff changeset
    48
 *  <p><b>This is NOT part of any supported API.
1908176fd6e3 6944312: Potential rebranding issues in openjdk/langtools repository sources
jjg
parents: 5520
diff changeset
    49
 *  If you write code that depends on this, you do so at your own risk.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
 *  This code and its internal interfaces are subject to change or
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
 *  deletion without notice.</b>
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
public class TreeMaker implements JCTree.Factory {
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
    /** The context key for the tree factory. */
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 22154
diff changeset
    56
    protected static final Context.Key<TreeMaker> treeMakerKey = new Context.Key<>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
    /** Get the TreeMaker instance. */
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
    public static TreeMaker instance(Context context) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
        TreeMaker instance = context.get(treeMakerKey);
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
        if (instance == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
            instance = new TreeMaker(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
        return instance;
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
    /** The position at which subsequent trees will be created.
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
    public int pos = Position.NOPOS;
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
    /** The toplevel tree to which created trees belong.
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
    public JCCompilationUnit toplevel;
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
    /** The current name table. */
1260
a772ba9ba43d 6574134: Allow for alternative implementation of Name Table with garbage collection of name bytes
jjg
parents: 10
diff changeset
    75
    Names names;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
    Types types;
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
    /** The current symbol table. */
06bc494ca11e Initial load
duke
parents:
diff changeset
    80
    Symtab syms;
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
    /** Create a tree maker with null toplevel and NOPOS as initial position.
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
    protected TreeMaker(Context context) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
        context.put(treeMakerKey, this);
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
        this.pos = Position.NOPOS;
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
        this.toplevel = null;
1260
a772ba9ba43d 6574134: Allow for alternative implementation of Name Table with garbage collection of name bytes
jjg
parents: 10
diff changeset
    88
        this.names = Names.instance(context);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
        this.syms = Symtab.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
        this.types = Types.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
    /** Create a tree maker with a given toplevel and FIRSTPOS as initial position.
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
     */
13845
bbb35ad7a9c1 7192073: (javac) minor refactoring of tree maker to help IDEs
ksrini
parents: 13689
diff changeset
    95
    protected TreeMaker(JCCompilationUnit toplevel, Names names, Types types, Symtab syms) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
        this.pos = Position.FIRSTPOS;
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
        this.toplevel = toplevel;
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
        this.names = names;
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
        this.types = types;
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
        this.syms = syms;
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
    /** Create a new tree maker for a given toplevel.
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   105
    public TreeMaker forToplevel(JCCompilationUnit toplevel) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   106
        return new TreeMaker(toplevel, names, types, syms);
06bc494ca11e Initial load
duke
parents:
diff changeset
   107
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
06bc494ca11e Initial load
duke
parents:
diff changeset
   109
    /** Reassign current position.
06bc494ca11e Initial load
duke
parents:
diff changeset
   110
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   111
    public TreeMaker at(int pos) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   112
        this.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   113
        return this;
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
06bc494ca11e Initial load
duke
parents:
diff changeset
   116
    /** Reassign current position.
06bc494ca11e Initial load
duke
parents:
diff changeset
   117
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   118
    public TreeMaker at(DiagnosticPosition pos) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   119
        this.pos = (pos == null ? Position.NOPOS : pos.getStartPosition());
06bc494ca11e Initial load
duke
parents:
diff changeset
   120
        return this;
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   124
     * Create given tree node at current position.
24069
dfb8f11542fc 8034245: Refactor TopLevel tree node.
pgovereau
parents: 22163
diff changeset
   125
     * @param defs a list of PackageDef, ClassDef, Import, and Skip
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   126
     */
24069
dfb8f11542fc 8034245: Refactor TopLevel tree node.
pgovereau
parents: 22163
diff changeset
   127
    public JCCompilationUnit TopLevel(List<JCTree> defs) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   128
        for (JCTree node : defs)
8032
e1aa25ccdabb 6396503: javac should not require assertions enabled
jjg
parents: 8031
diff changeset
   129
            Assert.check(node instanceof JCClassDecl
24069
dfb8f11542fc 8034245: Refactor TopLevel tree node.
pgovereau
parents: 22163
diff changeset
   130
                || node instanceof JCPackageDecl
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   131
                || node instanceof JCImport
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33707
diff changeset
   132
                || node instanceof JCModuleDecl
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   133
                || node instanceof JCSkip
06bc494ca11e Initial load
duke
parents:
diff changeset
   134
                || node instanceof JCErroneous
06bc494ca11e Initial load
duke
parents:
diff changeset
   135
                || (node instanceof JCExpressionStatement
8032
e1aa25ccdabb 6396503: javac should not require assertions enabled
jjg
parents: 8031
diff changeset
   136
                    && ((JCExpressionStatement)node).expr instanceof JCErroneous),
29294
376a915b4ff0 8073645: Add lambda-based lazy eval versions of Assert.check methods
mcimadamore
parents: 27224
diff changeset
   137
                    () -> node.getClass().getSimpleName());
24069
dfb8f11542fc 8034245: Refactor TopLevel tree node.
pgovereau
parents: 22163
diff changeset
   138
        JCCompilationUnit tree = new JCCompilationUnit(defs);
dfb8f11542fc 8034245: Refactor TopLevel tree node.
pgovereau
parents: 22163
diff changeset
   139
        tree.pos = pos;
dfb8f11542fc 8034245: Refactor TopLevel tree node.
pgovereau
parents: 22163
diff changeset
   140
        return tree;
dfb8f11542fc 8034245: Refactor TopLevel tree node.
pgovereau
parents: 22163
diff changeset
   141
    }
dfb8f11542fc 8034245: Refactor TopLevel tree node.
pgovereau
parents: 22163
diff changeset
   142
dfb8f11542fc 8034245: Refactor TopLevel tree node.
pgovereau
parents: 22163
diff changeset
   143
    public JCPackageDecl PackageDecl(List<JCAnnotation> annotations,
dfb8f11542fc 8034245: Refactor TopLevel tree node.
pgovereau
parents: 22163
diff changeset
   144
                                     JCExpression pid) {
dfb8f11542fc 8034245: Refactor TopLevel tree node.
pgovereau
parents: 22163
diff changeset
   145
        Assert.checkNonNull(annotations);
dfb8f11542fc 8034245: Refactor TopLevel tree node.
pgovereau
parents: 22163
diff changeset
   146
        Assert.checkNonNull(pid);
dfb8f11542fc 8034245: Refactor TopLevel tree node.
pgovereau
parents: 22163
diff changeset
   147
        JCPackageDecl tree = new JCPackageDecl(annotations, pid);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   148
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   149
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   150
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   151
06bc494ca11e Initial load
duke
parents:
diff changeset
   152
    public JCImport Import(JCTree qualid, boolean importStatic) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   153
        JCImport tree = new JCImport(qualid, importStatic);
06bc494ca11e Initial load
duke
parents:
diff changeset
   154
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   155
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   156
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   157
06bc494ca11e Initial load
duke
parents:
diff changeset
   158
    public JCClassDecl ClassDef(JCModifiers mods,
06bc494ca11e Initial load
duke
parents:
diff changeset
   159
                                Name name,
06bc494ca11e Initial load
duke
parents:
diff changeset
   160
                                List<JCTypeParameter> typarams,
8625
6b51ef804d49 6639645: Modeling type implementing missing interfaces
jjg
parents: 8032
diff changeset
   161
                                JCExpression extending,
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   162
                                List<JCExpression> implementing,
06bc494ca11e Initial load
duke
parents:
diff changeset
   163
                                List<JCTree> defs)
06bc494ca11e Initial load
duke
parents:
diff changeset
   164
    {
06bc494ca11e Initial load
duke
parents:
diff changeset
   165
        JCClassDecl tree = new JCClassDecl(mods,
06bc494ca11e Initial load
duke
parents:
diff changeset
   166
                                     name,
06bc494ca11e Initial load
duke
parents:
diff changeset
   167
                                     typarams,
06bc494ca11e Initial load
duke
parents:
diff changeset
   168
                                     extending,
06bc494ca11e Initial load
duke
parents:
diff changeset
   169
                                     implementing,
06bc494ca11e Initial load
duke
parents:
diff changeset
   170
                                     defs,
06bc494ca11e Initial load
duke
parents:
diff changeset
   171
                                     null);
06bc494ca11e Initial load
duke
parents:
diff changeset
   172
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   173
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   174
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   175
06bc494ca11e Initial load
duke
parents:
diff changeset
   176
    public JCMethodDecl MethodDef(JCModifiers mods,
06bc494ca11e Initial load
duke
parents:
diff changeset
   177
                               Name name,
06bc494ca11e Initial load
duke
parents:
diff changeset
   178
                               JCExpression restype,
06bc494ca11e Initial load
duke
parents:
diff changeset
   179
                               List<JCTypeParameter> typarams,
06bc494ca11e Initial load
duke
parents:
diff changeset
   180
                               List<JCVariableDecl> params,
06bc494ca11e Initial load
duke
parents:
diff changeset
   181
                               List<JCExpression> thrown,
06bc494ca11e Initial load
duke
parents:
diff changeset
   182
                               JCBlock body,
3149
0cd06d598d6f 6843077: JSR 308: Annotations on types
jjg
parents: 1264
diff changeset
   183
                               JCExpression defaultValue) {
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   184
        return MethodDef(
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   185
                mods, name, restype, typarams, null, params,
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   186
                thrown, body, defaultValue);
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   187
    }
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   188
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   189
    public JCMethodDecl MethodDef(JCModifiers mods,
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   190
                               Name name,
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   191
                               JCExpression restype,
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   192
                               List<JCTypeParameter> typarams,
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   193
                               JCVariableDecl recvparam,
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   194
                               List<JCVariableDecl> params,
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   195
                               List<JCExpression> thrown,
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   196
                               JCBlock body,
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   197
                               JCExpression defaultValue)
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   198
    {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   199
        JCMethodDecl tree = new JCMethodDecl(mods,
06bc494ca11e Initial load
duke
parents:
diff changeset
   200
                                       name,
06bc494ca11e Initial load
duke
parents:
diff changeset
   201
                                       restype,
06bc494ca11e Initial load
duke
parents:
diff changeset
   202
                                       typarams,
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   203
                                       recvparam,
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   204
                                       params,
06bc494ca11e Initial load
duke
parents:
diff changeset
   205
                                       thrown,
06bc494ca11e Initial load
duke
parents:
diff changeset
   206
                                       body,
06bc494ca11e Initial load
duke
parents:
diff changeset
   207
                                       defaultValue,
06bc494ca11e Initial load
duke
parents:
diff changeset
   208
                                       null);
06bc494ca11e Initial load
duke
parents:
diff changeset
   209
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   210
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   211
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   212
06bc494ca11e Initial load
duke
parents:
diff changeset
   213
    public JCVariableDecl VarDef(JCModifiers mods, Name name, JCExpression vartype, JCExpression init) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   214
        JCVariableDecl tree = new JCVariableDecl(mods, name, vartype, init, null);
06bc494ca11e Initial load
duke
parents:
diff changeset
   215
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   216
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   217
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   218
17578
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 15385
diff changeset
   219
    public JCVariableDecl ReceiverVarDef(JCModifiers mods, JCExpression name, JCExpression vartype) {
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 15385
diff changeset
   220
        JCVariableDecl tree = new JCVariableDecl(mods, name, vartype);
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 15385
diff changeset
   221
        tree.pos = pos;
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 15385
diff changeset
   222
        return tree;
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 15385
diff changeset
   223
    }
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 15385
diff changeset
   224
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   225
    public JCSkip Skip() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   226
        JCSkip tree = new JCSkip();
06bc494ca11e Initial load
duke
parents:
diff changeset
   227
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   228
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   229
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   230
06bc494ca11e Initial load
duke
parents:
diff changeset
   231
    public JCBlock Block(long flags, List<JCStatement> stats) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   232
        JCBlock tree = new JCBlock(flags, stats);
06bc494ca11e Initial load
duke
parents:
diff changeset
   233
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   234
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   235
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   236
06bc494ca11e Initial load
duke
parents:
diff changeset
   237
    public JCDoWhileLoop DoLoop(JCStatement body, JCExpression cond) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   238
        JCDoWhileLoop tree = new JCDoWhileLoop(body, cond);
06bc494ca11e Initial load
duke
parents:
diff changeset
   239
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   240
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   241
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   242
06bc494ca11e Initial load
duke
parents:
diff changeset
   243
    public JCWhileLoop WhileLoop(JCExpression cond, JCStatement body) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   244
        JCWhileLoop tree = new JCWhileLoop(cond, body);
06bc494ca11e Initial load
duke
parents:
diff changeset
   245
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   246
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   247
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   248
06bc494ca11e Initial load
duke
parents:
diff changeset
   249
    public JCForLoop ForLoop(List<JCStatement> init,
06bc494ca11e Initial load
duke
parents:
diff changeset
   250
                           JCExpression cond,
06bc494ca11e Initial load
duke
parents:
diff changeset
   251
                           List<JCExpressionStatement> step,
06bc494ca11e Initial load
duke
parents:
diff changeset
   252
                           JCStatement body)
06bc494ca11e Initial load
duke
parents:
diff changeset
   253
    {
06bc494ca11e Initial load
duke
parents:
diff changeset
   254
        JCForLoop tree = new JCForLoop(init, cond, step, body);
06bc494ca11e Initial load
duke
parents:
diff changeset
   255
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   256
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   257
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   258
06bc494ca11e Initial load
duke
parents:
diff changeset
   259
    public JCEnhancedForLoop ForeachLoop(JCVariableDecl var, JCExpression expr, JCStatement body) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   260
        JCEnhancedForLoop tree = new JCEnhancedForLoop(var, expr, body);
06bc494ca11e Initial load
duke
parents:
diff changeset
   261
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   262
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   263
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   264
06bc494ca11e Initial load
duke
parents:
diff changeset
   265
    public JCLabeledStatement Labelled(Name label, JCStatement body) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   266
        JCLabeledStatement tree = new JCLabeledStatement(label, body);
06bc494ca11e Initial load
duke
parents:
diff changeset
   267
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   268
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   269
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   270
06bc494ca11e Initial load
duke
parents:
diff changeset
   271
    public JCSwitch Switch(JCExpression selector, List<JCCase> cases) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   272
        JCSwitch tree = new JCSwitch(selector, cases);
06bc494ca11e Initial load
duke
parents:
diff changeset
   273
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   274
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   275
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   276
58713
ad69fd32778e 8226585: Improve javac messages for using a preview API
jlahoda
parents: 55306
diff changeset
   277
    public JCCase Case(@SuppressWarnings("preview") CaseTree.CaseKind caseKind, List<JCExpression> pats,
51563
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 50400
diff changeset
   278
                       List<JCStatement> stats, JCTree body) {
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 50400
diff changeset
   279
        JCCase tree = new JCCase(caseKind, pats, stats, body);
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 50400
diff changeset
   280
        tree.pos = pos;
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 50400
diff changeset
   281
        return tree;
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 50400
diff changeset
   282
    }
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 50400
diff changeset
   283
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 50400
diff changeset
   284
    public JCSwitchExpression SwitchExpression(JCExpression selector, List<JCCase> cases) {
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 50400
diff changeset
   285
        JCSwitchExpression tree = new JCSwitchExpression(selector, cases);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   286
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   287
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   288
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   289
06bc494ca11e Initial load
duke
parents:
diff changeset
   290
    public JCSynchronized Synchronized(JCExpression lock, JCBlock body) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   291
        JCSynchronized tree = new JCSynchronized(lock, body);
06bc494ca11e Initial load
duke
parents:
diff changeset
   292
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   293
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   294
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   295
06bc494ca11e Initial load
duke
parents:
diff changeset
   296
    public JCTry Try(JCBlock body, List<JCCatch> catchers, JCBlock finalizer) {
42828
cce89649f958 8171371: Remove redundant type-arguments from generic method calls
mcimadamore
parents: 42407
diff changeset
   297
        return Try(List.nil(), body, catchers, finalizer);
6148
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5847
diff changeset
   298
    }
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5847
diff changeset
   299
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5847
diff changeset
   300
    public JCTry Try(List<JCTree> resources,
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5847
diff changeset
   301
                     JCBlock body,
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5847
diff changeset
   302
                     List<JCCatch> catchers,
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5847
diff changeset
   303
                     JCBlock finalizer) {
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 5847
diff changeset
   304
        JCTry tree = new JCTry(resources, body, catchers, finalizer);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   305
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   306
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   307
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   308
06bc494ca11e Initial load
duke
parents:
diff changeset
   309
    public JCCatch Catch(JCVariableDecl param, JCBlock body) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   310
        JCCatch tree = new JCCatch(param, body);
06bc494ca11e Initial load
duke
parents:
diff changeset
   311
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   312
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   313
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   314
06bc494ca11e Initial load
duke
parents:
diff changeset
   315
    public JCConditional Conditional(JCExpression cond,
06bc494ca11e Initial load
duke
parents:
diff changeset
   316
                                   JCExpression thenpart,
06bc494ca11e Initial load
duke
parents:
diff changeset
   317
                                   JCExpression elsepart)
06bc494ca11e Initial load
duke
parents:
diff changeset
   318
    {
06bc494ca11e Initial load
duke
parents:
diff changeset
   319
        JCConditional tree = new JCConditional(cond, thenpart, elsepart);
06bc494ca11e Initial load
duke
parents:
diff changeset
   320
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   321
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   322
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   323
06bc494ca11e Initial load
duke
parents:
diff changeset
   324
    public JCIf If(JCExpression cond, JCStatement thenpart, JCStatement elsepart) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   325
        JCIf tree = new JCIf(cond, thenpart, elsepart);
06bc494ca11e Initial load
duke
parents:
diff changeset
   326
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   327
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   328
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   329
06bc494ca11e Initial load
duke
parents:
diff changeset
   330
    public JCExpressionStatement Exec(JCExpression expr) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   331
        JCExpressionStatement tree = new JCExpressionStatement(expr);
06bc494ca11e Initial load
duke
parents:
diff changeset
   332
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   333
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   334
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   335
55306
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 52455
diff changeset
   336
    public JCBreak Break(Name label) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   337
        JCBreak tree = new JCBreak(label, null);
06bc494ca11e Initial load
duke
parents:
diff changeset
   338
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   339
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   340
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   341
55306
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 52455
diff changeset
   342
    public JCYield Yield(JCExpression value) {
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 52455
diff changeset
   343
        JCYield tree = new JCYield(value, null);
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 52455
diff changeset
   344
        tree.pos = pos;
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 52455
diff changeset
   345
        return tree;
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 52455
diff changeset
   346
    }
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 52455
diff changeset
   347
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   348
    public JCContinue Continue(Name label) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   349
        JCContinue tree = new JCContinue(label, null);
06bc494ca11e Initial load
duke
parents:
diff changeset
   350
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   351
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   352
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   353
06bc494ca11e Initial load
duke
parents:
diff changeset
   354
    public JCReturn Return(JCExpression expr) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   355
        JCReturn tree = new JCReturn(expr);
06bc494ca11e Initial load
duke
parents:
diff changeset
   356
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   357
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   358
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   359
17807
36cff8c58cdf 7030476: Fix conflicting use of JCTree/JCExpression
vromero
parents: 17578
diff changeset
   360
    public JCThrow Throw(JCExpression expr) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   361
        JCThrow tree = new JCThrow(expr);
06bc494ca11e Initial load
duke
parents:
diff changeset
   362
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   363
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   364
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   365
06bc494ca11e Initial load
duke
parents:
diff changeset
   366
    public JCAssert Assert(JCExpression cond, JCExpression detail) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   367
        JCAssert tree = new JCAssert(cond, detail);
06bc494ca11e Initial load
duke
parents:
diff changeset
   368
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   369
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   370
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   371
06bc494ca11e Initial load
duke
parents:
diff changeset
   372
    public JCMethodInvocation Apply(List<JCExpression> typeargs,
06bc494ca11e Initial load
duke
parents:
diff changeset
   373
                       JCExpression fn,
06bc494ca11e Initial load
duke
parents:
diff changeset
   374
                       List<JCExpression> args)
06bc494ca11e Initial load
duke
parents:
diff changeset
   375
    {
06bc494ca11e Initial load
duke
parents:
diff changeset
   376
        JCMethodInvocation tree = new JCMethodInvocation(typeargs, fn, args);
06bc494ca11e Initial load
duke
parents:
diff changeset
   377
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   378
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   379
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   380
06bc494ca11e Initial load
duke
parents:
diff changeset
   381
    public JCNewClass NewClass(JCExpression encl,
06bc494ca11e Initial load
duke
parents:
diff changeset
   382
                             List<JCExpression> typeargs,
06bc494ca11e Initial load
duke
parents:
diff changeset
   383
                             JCExpression clazz,
06bc494ca11e Initial load
duke
parents:
diff changeset
   384
                             List<JCExpression> args,
06bc494ca11e Initial load
duke
parents:
diff changeset
   385
                             JCClassDecl def)
06bc494ca11e Initial load
duke
parents:
diff changeset
   386
    {
52455
bbbc110cdffe 8210197: javac can't tell during speculative attribution if a diamond expression is creating an anonymous inner class or not
vromero
parents: 51563
diff changeset
   387
        return SpeculativeNewClass(encl, typeargs, clazz, args, def, false);
bbbc110cdffe 8210197: javac can't tell during speculative attribution if a diamond expression is creating an anonymous inner class or not
vromero
parents: 51563
diff changeset
   388
    }
bbbc110cdffe 8210197: javac can't tell during speculative attribution if a diamond expression is creating an anonymous inner class or not
vromero
parents: 51563
diff changeset
   389
bbbc110cdffe 8210197: javac can't tell during speculative attribution if a diamond expression is creating an anonymous inner class or not
vromero
parents: 51563
diff changeset
   390
    public JCNewClass SpeculativeNewClass(JCExpression encl,
bbbc110cdffe 8210197: javac can't tell during speculative attribution if a diamond expression is creating an anonymous inner class or not
vromero
parents: 51563
diff changeset
   391
                             List<JCExpression> typeargs,
bbbc110cdffe 8210197: javac can't tell during speculative attribution if a diamond expression is creating an anonymous inner class or not
vromero
parents: 51563
diff changeset
   392
                             JCExpression clazz,
bbbc110cdffe 8210197: javac can't tell during speculative attribution if a diamond expression is creating an anonymous inner class or not
vromero
parents: 51563
diff changeset
   393
                             List<JCExpression> args,
bbbc110cdffe 8210197: javac can't tell during speculative attribution if a diamond expression is creating an anonymous inner class or not
vromero
parents: 51563
diff changeset
   394
                             JCClassDecl def,
bbbc110cdffe 8210197: javac can't tell during speculative attribution if a diamond expression is creating an anonymous inner class or not
vromero
parents: 51563
diff changeset
   395
                             boolean classDefRemoved)
bbbc110cdffe 8210197: javac can't tell during speculative attribution if a diamond expression is creating an anonymous inner class or not
vromero
parents: 51563
diff changeset
   396
    {
bbbc110cdffe 8210197: javac can't tell during speculative attribution if a diamond expression is creating an anonymous inner class or not
vromero
parents: 51563
diff changeset
   397
        JCNewClass tree = classDefRemoved ?
bbbc110cdffe 8210197: javac can't tell during speculative attribution if a diamond expression is creating an anonymous inner class or not
vromero
parents: 51563
diff changeset
   398
                new JCNewClass(encl, typeargs, clazz, args, def) {
bbbc110cdffe 8210197: javac can't tell during speculative attribution if a diamond expression is creating an anonymous inner class or not
vromero
parents: 51563
diff changeset
   399
                    @Override
bbbc110cdffe 8210197: javac can't tell during speculative attribution if a diamond expression is creating an anonymous inner class or not
vromero
parents: 51563
diff changeset
   400
                    public boolean classDeclRemoved() {
bbbc110cdffe 8210197: javac can't tell during speculative attribution if a diamond expression is creating an anonymous inner class or not
vromero
parents: 51563
diff changeset
   401
                        return true;
bbbc110cdffe 8210197: javac can't tell during speculative attribution if a diamond expression is creating an anonymous inner class or not
vromero
parents: 51563
diff changeset
   402
                    }
bbbc110cdffe 8210197: javac can't tell during speculative attribution if a diamond expression is creating an anonymous inner class or not
vromero
parents: 51563
diff changeset
   403
                } :
bbbc110cdffe 8210197: javac can't tell during speculative attribution if a diamond expression is creating an anonymous inner class or not
vromero
parents: 51563
diff changeset
   404
                new JCNewClass(encl, typeargs, clazz, args, def);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   405
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   406
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   407
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   408
06bc494ca11e Initial load
duke
parents:
diff changeset
   409
    public JCNewArray NewArray(JCExpression elemtype,
06bc494ca11e Initial load
duke
parents:
diff changeset
   410
                             List<JCExpression> dims,
06bc494ca11e Initial load
duke
parents:
diff changeset
   411
                             List<JCExpression> elems)
06bc494ca11e Initial load
duke
parents:
diff changeset
   412
    {
06bc494ca11e Initial load
duke
parents:
diff changeset
   413
        JCNewArray tree = new JCNewArray(elemtype, dims, elems);
06bc494ca11e Initial load
duke
parents:
diff changeset
   414
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   415
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   416
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   417
11141
7d112a1ecd0f 7115046: Add AST node for lambda expressions
mcimadamore
parents: 10950
diff changeset
   418
    public JCLambda Lambda(List<JCVariableDecl> params,
7d112a1ecd0f 7115046: Add AST node for lambda expressions
mcimadamore
parents: 10950
diff changeset
   419
                           JCTree body)
7d112a1ecd0f 7115046: Add AST node for lambda expressions
mcimadamore
parents: 10950
diff changeset
   420
    {
7d112a1ecd0f 7115046: Add AST node for lambda expressions
mcimadamore
parents: 10950
diff changeset
   421
        JCLambda tree = new JCLambda(params, body);
7d112a1ecd0f 7115046: Add AST node for lambda expressions
mcimadamore
parents: 10950
diff changeset
   422
        tree.pos = pos;
7d112a1ecd0f 7115046: Add AST node for lambda expressions
mcimadamore
parents: 10950
diff changeset
   423
        return tree;
7d112a1ecd0f 7115046: Add AST node for lambda expressions
mcimadamore
parents: 10950
diff changeset
   424
    }
7d112a1ecd0f 7115046: Add AST node for lambda expressions
mcimadamore
parents: 10950
diff changeset
   425
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   426
    public JCParens Parens(JCExpression expr) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   427
        JCParens tree = new JCParens(expr);
06bc494ca11e Initial load
duke
parents:
diff changeset
   428
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   429
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   430
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   431
06bc494ca11e Initial load
duke
parents:
diff changeset
   432
    public JCAssign Assign(JCExpression lhs, JCExpression rhs) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   433
        JCAssign tree = new JCAssign(lhs, rhs);
06bc494ca11e Initial load
duke
parents:
diff changeset
   434
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   435
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   436
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   437
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   438
    public JCAssignOp Assignop(JCTree.Tag opcode, JCTree lhs, JCTree rhs) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   439
        JCAssignOp tree = new JCAssignOp(opcode, lhs, rhs, null);
06bc494ca11e Initial load
duke
parents:
diff changeset
   440
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   441
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   442
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   443
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   444
    public JCUnary Unary(JCTree.Tag opcode, JCExpression arg) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   445
        JCUnary tree = new JCUnary(opcode, arg);
06bc494ca11e Initial load
duke
parents:
diff changeset
   446
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   447
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   448
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   449
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 9300
diff changeset
   450
    public JCBinary Binary(JCTree.Tag opcode, JCExpression lhs, JCExpression rhs) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   451
        JCBinary tree = new JCBinary(opcode, lhs, rhs, null);
06bc494ca11e Initial load
duke
parents:
diff changeset
   452
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   453
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   454
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   455
06bc494ca11e Initial load
duke
parents:
diff changeset
   456
    public JCTypeCast TypeCast(JCTree clazz, JCExpression expr) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   457
        JCTypeCast tree = new JCTypeCast(clazz, expr);
06bc494ca11e Initial load
duke
parents:
diff changeset
   458
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   459
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   460
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   461
06bc494ca11e Initial load
duke
parents:
diff changeset
   462
    public JCInstanceOf TypeTest(JCExpression expr, JCTree clazz) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   463
        JCInstanceOf tree = new JCInstanceOf(expr, clazz);
06bc494ca11e Initial load
duke
parents:
diff changeset
   464
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   465
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   466
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   467
06bc494ca11e Initial load
duke
parents:
diff changeset
   468
    public JCArrayAccess Indexed(JCExpression indexed, JCExpression index) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   469
        JCArrayAccess tree = new JCArrayAccess(indexed, index);
06bc494ca11e Initial load
duke
parents:
diff changeset
   470
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   471
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   472
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   473
06bc494ca11e Initial load
duke
parents:
diff changeset
   474
    public JCFieldAccess Select(JCExpression selected, Name selector) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   475
        JCFieldAccess tree = new JCFieldAccess(selected, selector, null);
06bc494ca11e Initial load
duke
parents:
diff changeset
   476
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   477
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   478
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   479
11142
45d0ec1e7463 7115049: Add AST node for method references
mcimadamore
parents: 11141
diff changeset
   480
    public JCMemberReference Reference(JCMemberReference.ReferenceMode mode, Name name,
45d0ec1e7463 7115049: Add AST node for method references
mcimadamore
parents: 11141
diff changeset
   481
            JCExpression expr, List<JCExpression> typeargs) {
45d0ec1e7463 7115049: Add AST node for method references
mcimadamore
parents: 11141
diff changeset
   482
        JCMemberReference tree = new JCMemberReference(mode, name, expr, typeargs);
45d0ec1e7463 7115049: Add AST node for method references
mcimadamore
parents: 11141
diff changeset
   483
        tree.pos = pos;
45d0ec1e7463 7115049: Add AST node for method references
mcimadamore
parents: 11141
diff changeset
   484
        return tree;
45d0ec1e7463 7115049: Add AST node for method references
mcimadamore
parents: 11141
diff changeset
   485
    }
45d0ec1e7463 7115049: Add AST node for method references
mcimadamore
parents: 11141
diff changeset
   486
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   487
    public JCIdent Ident(Name name) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   488
        JCIdent tree = new JCIdent(name, null);
06bc494ca11e Initial load
duke
parents:
diff changeset
   489
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   490
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   491
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   492
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 13845
diff changeset
   493
    public JCLiteral Literal(TypeTag tag, Object value) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   494
        JCLiteral tree = new JCLiteral(tag, value);
06bc494ca11e Initial load
duke
parents:
diff changeset
   495
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   496
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   497
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   498
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 13845
diff changeset
   499
    public JCPrimitiveTypeTree TypeIdent(TypeTag typetag) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   500
        JCPrimitiveTypeTree tree = new JCPrimitiveTypeTree(typetag);
06bc494ca11e Initial load
duke
parents:
diff changeset
   501
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   502
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   503
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   504
06bc494ca11e Initial load
duke
parents:
diff changeset
   505
    public JCArrayTypeTree TypeArray(JCExpression elemtype) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   506
        JCArrayTypeTree tree = new JCArrayTypeTree(elemtype);
06bc494ca11e Initial load
duke
parents:
diff changeset
   507
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   508
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   509
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   510
06bc494ca11e Initial load
duke
parents:
diff changeset
   511
    public JCTypeApply TypeApply(JCExpression clazz, List<JCExpression> arguments) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   512
        JCTypeApply tree = new JCTypeApply(clazz, arguments);
06bc494ca11e Initial load
duke
parents:
diff changeset
   513
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   514
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   515
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   516
9300
c2de4dd9853b 7033809: Rename "disjunctive" to "union" in javax.lang.model
darcy
parents: 8625
diff changeset
   517
    public JCTypeUnion TypeUnion(List<JCExpression> components) {
c2de4dd9853b 7033809: Rename "disjunctive" to "union" in javax.lang.model
darcy
parents: 8625
diff changeset
   518
        JCTypeUnion tree = new JCTypeUnion(components);
5492
515e4b33b335 6943289: Project Coin: Improved Exception Handling for Java (aka 'multicatch')
mcimadamore
parents: 4870
diff changeset
   519
        tree.pos = pos;
515e4b33b335 6943289: Project Coin: Improved Exception Handling for Java (aka 'multicatch')
mcimadamore
parents: 4870
diff changeset
   520
        return tree;
515e4b33b335 6943289: Project Coin: Improved Exception Handling for Java (aka 'multicatch')
mcimadamore
parents: 4870
diff changeset
   521
    }
515e4b33b335 6943289: Project Coin: Improved Exception Handling for Java (aka 'multicatch')
mcimadamore
parents: 4870
diff changeset
   522
14725
65836e833f59 8002099: Add support for intersection types in cast expression
mcimadamore
parents: 14359
diff changeset
   523
    public JCTypeIntersection TypeIntersection(List<JCExpression> components) {
65836e833f59 8002099: Add support for intersection types in cast expression
mcimadamore
parents: 14359
diff changeset
   524
        JCTypeIntersection tree = new JCTypeIntersection(components);
65836e833f59 8002099: Add support for intersection types in cast expression
mcimadamore
parents: 14359
diff changeset
   525
        tree.pos = pos;
65836e833f59 8002099: Add support for intersection types in cast expression
mcimadamore
parents: 14359
diff changeset
   526
        return tree;
65836e833f59 8002099: Add support for intersection types in cast expression
mcimadamore
parents: 14359
diff changeset
   527
    }
65836e833f59 8002099: Add support for intersection types in cast expression
mcimadamore
parents: 14359
diff changeset
   528
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   529
    public JCTypeParameter TypeParameter(Name name, List<JCExpression> bounds) {
42828
cce89649f958 8171371: Remove redundant type-arguments from generic method calls
mcimadamore
parents: 42407
diff changeset
   530
        return TypeParameter(name, bounds, List.nil());
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   531
    }
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   532
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   533
    public JCTypeParameter TypeParameter(Name name, List<JCExpression> bounds, List<JCAnnotation> annos) {
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   534
        JCTypeParameter tree = new JCTypeParameter(name, bounds, annos);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   535
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   536
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   537
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   538
06bc494ca11e Initial load
duke
parents:
diff changeset
   539
    public JCWildcard Wildcard(TypeBoundKind kind, JCTree type) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   540
        JCWildcard tree = new JCWildcard(kind, type);
06bc494ca11e Initial load
duke
parents:
diff changeset
   541
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   542
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   543
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   544
06bc494ca11e Initial load
duke
parents:
diff changeset
   545
    public TypeBoundKind TypeBoundKind(BoundKind kind) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   546
        TypeBoundKind tree = new TypeBoundKind(kind);
06bc494ca11e Initial load
duke
parents:
diff changeset
   547
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   548
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   549
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   550
06bc494ca11e Initial load
duke
parents:
diff changeset
   551
    public JCAnnotation Annotation(JCTree annotationType, List<JCExpression> args) {
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   552
        JCAnnotation tree = new JCAnnotation(Tag.ANNOTATION, annotationType, args);
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   553
        tree.pos = pos;
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   554
        return tree;
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   555
    }
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   556
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   557
    public JCAnnotation TypeAnnotation(JCTree annotationType, List<JCExpression> args) {
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   558
        JCAnnotation tree = new JCAnnotation(Tag.TYPE_ANNOTATION, annotationType, args);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   559
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   560
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   561
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   562
06bc494ca11e Initial load
duke
parents:
diff changeset
   563
    public JCModifiers Modifiers(long flags, List<JCAnnotation> annotations) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   564
        JCModifiers tree = new JCModifiers(flags, annotations);
6152
111b884a19a7 6972327: JCTree.pos incorrect for annotations without modifiers and package
jjg
parents: 6148
diff changeset
   565
        boolean noFlags = (flags & (Flags.ModifierFlags | Flags.ANNOTATION)) == 0;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   566
        tree.pos = (noFlags && annotations.isEmpty()) ? Position.NOPOS : pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   567
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   568
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   569
06bc494ca11e Initial load
duke
parents:
diff changeset
   570
    public JCModifiers Modifiers(long flags) {
42828
cce89649f958 8171371: Remove redundant type-arguments from generic method calls
mcimadamore
parents: 42407
diff changeset
   571
        return Modifiers(flags, List.nil());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   572
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   573
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33707
diff changeset
   574
    @Override
42407
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 36526
diff changeset
   575
    public JCModuleDecl ModuleDef(JCModifiers mods, ModuleKind kind,
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 36526
diff changeset
   576
            JCExpression qualid, List<JCDirective> directives) {
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 36526
diff changeset
   577
        JCModuleDecl tree = new JCModuleDecl(mods, kind, qualid, directives);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33707
diff changeset
   578
        tree.pos = pos;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33707
diff changeset
   579
        return tree;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33707
diff changeset
   580
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33707
diff changeset
   581
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33707
diff changeset
   582
    @Override
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33707
diff changeset
   583
    public JCExports Exports(JCExpression qualId, List<JCExpression> moduleNames) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33707
diff changeset
   584
        JCExports tree = new JCExports(qualId, moduleNames);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33707
diff changeset
   585
        tree.pos = pos;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33707
diff changeset
   586
        return tree;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33707
diff changeset
   587
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33707
diff changeset
   588
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33707
diff changeset
   589
    @Override
42407
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 36526
diff changeset
   590
    public JCOpens Opens(JCExpression qualId, List<JCExpression> moduleNames) {
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 36526
diff changeset
   591
        JCOpens tree = new JCOpens(qualId, moduleNames);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33707
diff changeset
   592
        tree.pos = pos;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33707
diff changeset
   593
        return tree;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33707
diff changeset
   594
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33707
diff changeset
   595
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33707
diff changeset
   596
    @Override
42407
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 36526
diff changeset
   597
    public JCProvides Provides(JCExpression serviceName, List<JCExpression> implNames) {
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 36526
diff changeset
   598
        JCProvides tree = new JCProvides(serviceName, implNames);
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 36526
diff changeset
   599
        tree.pos = pos;
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 36526
diff changeset
   600
        return tree;
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 36526
diff changeset
   601
    }
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 36526
diff changeset
   602
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 36526
diff changeset
   603
    @Override
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 36526
diff changeset
   604
    public JCRequires Requires(boolean isTransitive, boolean isStaticPhase, JCExpression qualId) {
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 36526
diff changeset
   605
        JCRequires tree = new JCRequires(isTransitive, isStaticPhase, qualId);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33707
diff changeset
   606
        tree.pos = pos;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33707
diff changeset
   607
        return tree;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33707
diff changeset
   608
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33707
diff changeset
   609
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33707
diff changeset
   610
    @Override
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33707
diff changeset
   611
    public JCUses Uses(JCExpression qualId) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33707
diff changeset
   612
        JCUses tree = new JCUses(qualId);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33707
diff changeset
   613
        tree.pos = pos;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33707
diff changeset
   614
        return tree;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33707
diff changeset
   615
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33707
diff changeset
   616
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   617
    public JCAnnotatedType AnnotatedType(List<JCAnnotation> annotations, JCExpression underlyingType) {
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   618
        JCAnnotatedType tree = new JCAnnotatedType(annotations, underlyingType);
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   619
        tree.pos = pos;
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   620
        return tree;
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   621
    }
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   622
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   623
    public JCErroneous Erroneous() {
42828
cce89649f958 8171371: Remove redundant type-arguments from generic method calls
mcimadamore
parents: 42407
diff changeset
   624
        return Erroneous(List.nil());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   625
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   626
06bc494ca11e Initial load
duke
parents:
diff changeset
   627
    public JCErroneous Erroneous(List<? extends JCTree> errs) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   628
        JCErroneous tree = new JCErroneous(errs);
06bc494ca11e Initial load
duke
parents:
diff changeset
   629
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   630
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   631
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   632
51563
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 50400
diff changeset
   633
    public LetExpr LetExpr(List<JCStatement> defs, JCExpression expr) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   634
        LetExpr tree = new LetExpr(defs, expr);
06bc494ca11e Initial load
duke
parents:
diff changeset
   635
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   636
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   637
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   638
06bc494ca11e Initial load
duke
parents:
diff changeset
   639
/* ***************************************************************************
06bc494ca11e Initial load
duke
parents:
diff changeset
   640
 * Derived building blocks.
06bc494ca11e Initial load
duke
parents:
diff changeset
   641
 ****************************************************************************/
06bc494ca11e Initial load
duke
parents:
diff changeset
   642
06bc494ca11e Initial load
duke
parents:
diff changeset
   643
    public JCClassDecl AnonymousClassDef(JCModifiers mods,
06bc494ca11e Initial load
duke
parents:
diff changeset
   644
                                         List<JCTree> defs)
06bc494ca11e Initial load
duke
parents:
diff changeset
   645
    {
06bc494ca11e Initial load
duke
parents:
diff changeset
   646
        return ClassDef(mods,
06bc494ca11e Initial load
duke
parents:
diff changeset
   647
                        names.empty,
42828
cce89649f958 8171371: Remove redundant type-arguments from generic method calls
mcimadamore
parents: 42407
diff changeset
   648
                        List.nil(),
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   649
                        null,
42828
cce89649f958 8171371: Remove redundant type-arguments from generic method calls
mcimadamore
parents: 42407
diff changeset
   650
                        List.nil(),
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   651
                        defs);
06bc494ca11e Initial load
duke
parents:
diff changeset
   652
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   653
33707
d74fef6b01e0 8141639: Signatures in Lower could be made tighter by using JCExpression instead of JCTree
mcimadamore
parents: 33706
diff changeset
   654
    public LetExpr LetExpr(JCVariableDecl def, JCExpression expr) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   655
        LetExpr tree = new LetExpr(List.of(def), expr);
06bc494ca11e Initial load
duke
parents:
diff changeset
   656
        tree.pos = pos;
06bc494ca11e Initial load
duke
parents:
diff changeset
   657
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
   658
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   659
06bc494ca11e Initial load
duke
parents:
diff changeset
   660
    /** Create an identifier from a symbol.
06bc494ca11e Initial load
duke
parents:
diff changeset
   661
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   662
    public JCIdent Ident(Symbol sym) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   663
        return (JCIdent)new JCIdent((sym.name != names.empty)
06bc494ca11e Initial load
duke
parents:
diff changeset
   664
                                ? sym.name
06bc494ca11e Initial load
duke
parents:
diff changeset
   665
                                : sym.flatName(), sym)
06bc494ca11e Initial load
duke
parents:
diff changeset
   666
            .setPos(pos)
06bc494ca11e Initial load
duke
parents:
diff changeset
   667
            .setType(sym.type);
06bc494ca11e Initial load
duke
parents:
diff changeset
   668
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   669
06bc494ca11e Initial load
duke
parents:
diff changeset
   670
    /** Create a selection node from a qualifier tree and a symbol.
06bc494ca11e Initial load
duke
parents:
diff changeset
   671
     *  @param base   The qualifier tree.
06bc494ca11e Initial load
duke
parents:
diff changeset
   672
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   673
    public JCExpression Select(JCExpression base, Symbol sym) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   674
        return new JCFieldAccess(base, sym.name, sym).setPos(pos).setType(sym.type);
06bc494ca11e Initial load
duke
parents:
diff changeset
   675
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   676
06bc494ca11e Initial load
duke
parents:
diff changeset
   677
    /** Create a qualified identifier from a symbol, adding enough qualifications
06bc494ca11e Initial load
duke
parents:
diff changeset
   678
     *  to make the reference unique.
06bc494ca11e Initial load
duke
parents:
diff changeset
   679
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   680
    public JCExpression QualIdent(Symbol sym) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   681
        return isUnqualifiable(sym)
06bc494ca11e Initial load
duke
parents:
diff changeset
   682
            ? Ident(sym)
06bc494ca11e Initial load
duke
parents:
diff changeset
   683
            : Select(QualIdent(sym.owner), sym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   684
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   685
06bc494ca11e Initial load
duke
parents:
diff changeset
   686
    /** Create an identifier that refers to the variable declared in given variable
06bc494ca11e Initial load
duke
parents:
diff changeset
   687
     *  declaration.
06bc494ca11e Initial load
duke
parents:
diff changeset
   688
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   689
    public JCExpression Ident(JCVariableDecl param) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   690
        return Ident(param.sym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   691
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   692
06bc494ca11e Initial load
duke
parents:
diff changeset
   693
    /** Create a list of identifiers referring to the variables declared
06bc494ca11e Initial load
duke
parents:
diff changeset
   694
     *  in given list of variable declarations.
06bc494ca11e Initial load
duke
parents:
diff changeset
   695
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   696
    public List<JCExpression> Idents(List<JCVariableDecl> params) {
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 22154
diff changeset
   697
        ListBuffer<JCExpression> ids = new ListBuffer<>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   698
        for (List<JCVariableDecl> l = params; l.nonEmpty(); l = l.tail)
06bc494ca11e Initial load
duke
parents:
diff changeset
   699
            ids.append(Ident(l.head));
06bc494ca11e Initial load
duke
parents:
diff changeset
   700
        return ids.toList();
06bc494ca11e Initial load
duke
parents:
diff changeset
   701
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   702
06bc494ca11e Initial load
duke
parents:
diff changeset
   703
    /** Create a tree representing `this', given its type.
06bc494ca11e Initial load
duke
parents:
diff changeset
   704
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   705
    public JCExpression This(Type t) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   706
        return Ident(new VarSymbol(FINAL, names._this, t, t.tsym));
06bc494ca11e Initial load
duke
parents:
diff changeset
   707
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   708
33706
0d21ecb55e6a 8129740: Incorrect class file created when passing lambda in inner class constructor
sadayapalam
parents: 30404
diff changeset
   709
    /** Create a tree representing qualified `this' given its type
0d21ecb55e6a 8129740: Incorrect class file created when passing lambda in inner class constructor
sadayapalam
parents: 30404
diff changeset
   710
     */
0d21ecb55e6a 8129740: Incorrect class file created when passing lambda in inner class constructor
sadayapalam
parents: 30404
diff changeset
   711
    public JCExpression QualThis(Type t) {
0d21ecb55e6a 8129740: Incorrect class file created when passing lambda in inner class constructor
sadayapalam
parents: 30404
diff changeset
   712
        return Select(Type(t), new VarSymbol(FINAL, names._this, t, t.tsym));
0d21ecb55e6a 8129740: Incorrect class file created when passing lambda in inner class constructor
sadayapalam
parents: 30404
diff changeset
   713
    }
0d21ecb55e6a 8129740: Incorrect class file created when passing lambda in inner class constructor
sadayapalam
parents: 30404
diff changeset
   714
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   715
    /** Create a tree representing a class literal.
06bc494ca11e Initial load
duke
parents:
diff changeset
   716
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   717
    public JCExpression ClassLiteral(ClassSymbol clazz) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   718
        return ClassLiteral(clazz.type);
06bc494ca11e Initial load
duke
parents:
diff changeset
   719
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   720
06bc494ca11e Initial load
duke
parents:
diff changeset
   721
    /** Create a tree representing a class literal.
06bc494ca11e Initial load
duke
parents:
diff changeset
   722
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   723
    public JCExpression ClassLiteral(Type t) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   724
        VarSymbol lit = new VarSymbol(STATIC | PUBLIC | FINAL,
06bc494ca11e Initial load
duke
parents:
diff changeset
   725
                                      names._class,
06bc494ca11e Initial load
duke
parents:
diff changeset
   726
                                      t,
06bc494ca11e Initial load
duke
parents:
diff changeset
   727
                                      t.tsym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   728
        return Select(Type(t), lit);
06bc494ca11e Initial load
duke
parents:
diff changeset
   729
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   730
06bc494ca11e Initial load
duke
parents:
diff changeset
   731
    /** Create a tree representing `super', given its type and owner.
06bc494ca11e Initial load
duke
parents:
diff changeset
   732
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   733
    public JCIdent Super(Type t, TypeSymbol owner) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   734
        return Ident(new VarSymbol(FINAL, names._super, t, owner));
06bc494ca11e Initial load
duke
parents:
diff changeset
   735
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   736
06bc494ca11e Initial load
duke
parents:
diff changeset
   737
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   738
     * Create a method invocation from a method tree and a list of
06bc494ca11e Initial load
duke
parents:
diff changeset
   739
     * argument trees.
06bc494ca11e Initial load
duke
parents:
diff changeset
   740
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   741
    public JCMethodInvocation App(JCExpression meth, List<JCExpression> args) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   742
        return Apply(null, meth, args).setType(meth.type.getReturnType());
06bc494ca11e Initial load
duke
parents:
diff changeset
   743
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   744
06bc494ca11e Initial load
duke
parents:
diff changeset
   745
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   746
     * Create a no-arg method invocation from a method tree
06bc494ca11e Initial load
duke
parents:
diff changeset
   747
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   748
    public JCMethodInvocation App(JCExpression meth) {
42828
cce89649f958 8171371: Remove redundant type-arguments from generic method calls
mcimadamore
parents: 42407
diff changeset
   749
        return Apply(null, meth, List.nil()).setType(meth.type.getReturnType());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   750
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   751
06bc494ca11e Initial load
duke
parents:
diff changeset
   752
    /** Create a method invocation from a method tree and a list of argument trees.
06bc494ca11e Initial load
duke
parents:
diff changeset
   753
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   754
    public JCExpression Create(Symbol ctor, List<JCExpression> args) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   755
        Type t = ctor.owner.erasure(types);
06bc494ca11e Initial load
duke
parents:
diff changeset
   756
        JCNewClass newclass = NewClass(null, null, Type(t), args, null);
06bc494ca11e Initial load
duke
parents:
diff changeset
   757
        newclass.constructor = ctor;
06bc494ca11e Initial load
duke
parents:
diff changeset
   758
        newclass.setType(t);
06bc494ca11e Initial load
duke
parents:
diff changeset
   759
        return newclass;
06bc494ca11e Initial load
duke
parents:
diff changeset
   760
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   761
06bc494ca11e Initial load
duke
parents:
diff changeset
   762
    /** Create a tree representing given type.
06bc494ca11e Initial load
duke
parents:
diff changeset
   763
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   764
    public JCExpression Type(Type t) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   765
        if (t == null) return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   766
        JCExpression tp;
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 13845
diff changeset
   767
        switch (t.getTag()) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   768
        case BYTE: case CHAR: case SHORT: case INT: case LONG: case FLOAT:
06bc494ca11e Initial load
duke
parents:
diff changeset
   769
        case DOUBLE: case BOOLEAN: case VOID:
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 13845
diff changeset
   770
            tp = TypeIdent(t.getTag());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   771
            break;
06bc494ca11e Initial load
duke
parents:
diff changeset
   772
        case TYPEVAR:
06bc494ca11e Initial load
duke
parents:
diff changeset
   773
            tp = Ident(t.tsym);
06bc494ca11e Initial load
duke
parents:
diff changeset
   774
            break;
06bc494ca11e Initial load
duke
parents:
diff changeset
   775
        case WILDCARD: {
06bc494ca11e Initial load
duke
parents:
diff changeset
   776
            WildcardType a = ((WildcardType) t);
30404
952a476681b2 8078473: javac diamond finder crashes when used to build java.base module.
sadayapalam
parents: 29294
diff changeset
   777
            tp = Wildcard(TypeBoundKind(a.kind), a.kind == BoundKind.UNBOUND ? null : Type(a.type));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   778
            break;
06bc494ca11e Initial load
duke
parents:
diff changeset
   779
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   780
        case CLASS:
25440
7f9cedf2e88d 8042239: javac: TreeMaker.Type(Type t) does not handle UnionClassType
jlahoda
parents: 24069
diff changeset
   781
            switch (t.getKind()) {
7f9cedf2e88d 8042239: javac: TreeMaker.Type(Type t) does not handle UnionClassType
jlahoda
parents: 24069
diff changeset
   782
            case UNION: {
7f9cedf2e88d 8042239: javac: TreeMaker.Type(Type t) does not handle UnionClassType
jlahoda
parents: 24069
diff changeset
   783
                UnionClassType tu = (UnionClassType)t;
7f9cedf2e88d 8042239: javac: TreeMaker.Type(Type t) does not handle UnionClassType
jlahoda
parents: 24069
diff changeset
   784
                ListBuffer<JCExpression> la = new ListBuffer<>();
7f9cedf2e88d 8042239: javac: TreeMaker.Type(Type t) does not handle UnionClassType
jlahoda
parents: 24069
diff changeset
   785
                for (Type ta : tu.getAlternativeTypes()) {
7f9cedf2e88d 8042239: javac: TreeMaker.Type(Type t) does not handle UnionClassType
jlahoda
parents: 24069
diff changeset
   786
                    la.add(Type(ta));
7f9cedf2e88d 8042239: javac: TreeMaker.Type(Type t) does not handle UnionClassType
jlahoda
parents: 24069
diff changeset
   787
                }
7f9cedf2e88d 8042239: javac: TreeMaker.Type(Type t) does not handle UnionClassType
jlahoda
parents: 24069
diff changeset
   788
                tp = TypeUnion(la.toList());
7f9cedf2e88d 8042239: javac: TreeMaker.Type(Type t) does not handle UnionClassType
jlahoda
parents: 24069
diff changeset
   789
                break;
7f9cedf2e88d 8042239: javac: TreeMaker.Type(Type t) does not handle UnionClassType
jlahoda
parents: 24069
diff changeset
   790
            }
7f9cedf2e88d 8042239: javac: TreeMaker.Type(Type t) does not handle UnionClassType
jlahoda
parents: 24069
diff changeset
   791
            case INTERSECTION: {
7f9cedf2e88d 8042239: javac: TreeMaker.Type(Type t) does not handle UnionClassType
jlahoda
parents: 24069
diff changeset
   792
                IntersectionClassType it = (IntersectionClassType)t;
7f9cedf2e88d 8042239: javac: TreeMaker.Type(Type t) does not handle UnionClassType
jlahoda
parents: 24069
diff changeset
   793
                ListBuffer<JCExpression> la = new ListBuffer<>();
7f9cedf2e88d 8042239: javac: TreeMaker.Type(Type t) does not handle UnionClassType
jlahoda
parents: 24069
diff changeset
   794
                for (Type ta : it.getExplicitComponents()) {
7f9cedf2e88d 8042239: javac: TreeMaker.Type(Type t) does not handle UnionClassType
jlahoda
parents: 24069
diff changeset
   795
                    la.add(Type(ta));
7f9cedf2e88d 8042239: javac: TreeMaker.Type(Type t) does not handle UnionClassType
jlahoda
parents: 24069
diff changeset
   796
                }
7f9cedf2e88d 8042239: javac: TreeMaker.Type(Type t) does not handle UnionClassType
jlahoda
parents: 24069
diff changeset
   797
                tp = TypeIntersection(la.toList());
7f9cedf2e88d 8042239: javac: TreeMaker.Type(Type t) does not handle UnionClassType
jlahoda
parents: 24069
diff changeset
   798
                break;
7f9cedf2e88d 8042239: javac: TreeMaker.Type(Type t) does not handle UnionClassType
jlahoda
parents: 24069
diff changeset
   799
            }
7f9cedf2e88d 8042239: javac: TreeMaker.Type(Type t) does not handle UnionClassType
jlahoda
parents: 24069
diff changeset
   800
            default: {
7f9cedf2e88d 8042239: javac: TreeMaker.Type(Type t) does not handle UnionClassType
jlahoda
parents: 24069
diff changeset
   801
                Type outer = t.getEnclosingType();
7f9cedf2e88d 8042239: javac: TreeMaker.Type(Type t) does not handle UnionClassType
jlahoda
parents: 24069
diff changeset
   802
                JCExpression clazz = outer.hasTag(CLASS) && t.tsym.owner.kind == TYP
7f9cedf2e88d 8042239: javac: TreeMaker.Type(Type t) does not handle UnionClassType
jlahoda
parents: 24069
diff changeset
   803
                        ? Select(Type(outer), t.tsym)
7f9cedf2e88d 8042239: javac: TreeMaker.Type(Type t) does not handle UnionClassType
jlahoda
parents: 24069
diff changeset
   804
                        : QualIdent(t.tsym);
7f9cedf2e88d 8042239: javac: TreeMaker.Type(Type t) does not handle UnionClassType
jlahoda
parents: 24069
diff changeset
   805
                tp = t.getTypeArguments().isEmpty()
7f9cedf2e88d 8042239: javac: TreeMaker.Type(Type t) does not handle UnionClassType
jlahoda
parents: 24069
diff changeset
   806
                        ? clazz
7f9cedf2e88d 8042239: javac: TreeMaker.Type(Type t) does not handle UnionClassType
jlahoda
parents: 24069
diff changeset
   807
                        : TypeApply(clazz, Types(t.getTypeArguments()));
7f9cedf2e88d 8042239: javac: TreeMaker.Type(Type t) does not handle UnionClassType
jlahoda
parents: 24069
diff changeset
   808
                break;
7f9cedf2e88d 8042239: javac: TreeMaker.Type(Type t) does not handle UnionClassType
jlahoda
parents: 24069
diff changeset
   809
            }
7f9cedf2e88d 8042239: javac: TreeMaker.Type(Type t) does not handle UnionClassType
jlahoda
parents: 24069
diff changeset
   810
            }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   811
            break;
06bc494ca11e Initial load
duke
parents:
diff changeset
   812
        case ARRAY:
06bc494ca11e Initial load
duke
parents:
diff changeset
   813
            tp = TypeArray(Type(types.elemtype(t)));
06bc494ca11e Initial load
duke
parents:
diff changeset
   814
            break;
06bc494ca11e Initial load
duke
parents:
diff changeset
   815
        case ERROR:
06bc494ca11e Initial load
duke
parents:
diff changeset
   816
            tp = TypeIdent(ERROR);
06bc494ca11e Initial load
duke
parents:
diff changeset
   817
            break;
06bc494ca11e Initial load
duke
parents:
diff changeset
   818
        default:
06bc494ca11e Initial load
duke
parents:
diff changeset
   819
            throw new AssertionError("unexpected type: " + t);
06bc494ca11e Initial load
duke
parents:
diff changeset
   820
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   821
        return tp.setType(t);
06bc494ca11e Initial load
duke
parents:
diff changeset
   822
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   823
06bc494ca11e Initial load
duke
parents:
diff changeset
   824
    /** Create a list of trees representing given list of types.
06bc494ca11e Initial load
duke
parents:
diff changeset
   825
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   826
    public List<JCExpression> Types(List<Type> ts) {
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 22154
diff changeset
   827
        ListBuffer<JCExpression> lb = new ListBuffer<>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   828
        for (List<Type> l = ts; l.nonEmpty(); l = l.tail)
8032
e1aa25ccdabb 6396503: javac should not require assertions enabled
jjg
parents: 8031
diff changeset
   829
            lb.append(Type(l.head));
e1aa25ccdabb 6396503: javac should not require assertions enabled
jjg
parents: 8031
diff changeset
   830
        return lb.toList();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   831
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   832
06bc494ca11e Initial load
duke
parents:
diff changeset
   833
    /** Create a variable definition from a variable symbol and an initializer
06bc494ca11e Initial load
duke
parents:
diff changeset
   834
     *  expression.
06bc494ca11e Initial load
duke
parents:
diff changeset
   835
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   836
    public JCVariableDecl VarDef(VarSymbol v, JCExpression init) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   837
        return (JCVariableDecl)
06bc494ca11e Initial load
duke
parents:
diff changeset
   838
            new JCVariableDecl(
14961
e731935052af 8005098: Provide isSynthesized() information on Attribute.Compound
jfranck
parents: 14725
diff changeset
   839
                Modifiers(v.flags(), Annotations(v.getRawAttributes())),
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   840
                v.name,
06bc494ca11e Initial load
duke
parents:
diff changeset
   841
                Type(v.type),
06bc494ca11e Initial load
duke
parents:
diff changeset
   842
                init,
06bc494ca11e Initial load
duke
parents:
diff changeset
   843
                v).setPos(pos).setType(v.type);
06bc494ca11e Initial load
duke
parents:
diff changeset
   844
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   845
06bc494ca11e Initial load
duke
parents:
diff changeset
   846
    /** Create annotation trees from annotations.
06bc494ca11e Initial load
duke
parents:
diff changeset
   847
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   848
    public List<JCAnnotation> Annotations(List<Attribute.Compound> attributes) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   849
        if (attributes == null) return List.nil();
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 22154
diff changeset
   850
        ListBuffer<JCAnnotation> result = new ListBuffer<>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   851
        for (List<Attribute.Compound> i = attributes; i.nonEmpty(); i=i.tail) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   852
            Attribute a = i.head;
06bc494ca11e Initial load
duke
parents:
diff changeset
   853
            result.append(Annotation(a));
06bc494ca11e Initial load
duke
parents:
diff changeset
   854
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   855
        return result.toList();
06bc494ca11e Initial load
duke
parents:
diff changeset
   856
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   857
06bc494ca11e Initial load
duke
parents:
diff changeset
   858
    public JCLiteral Literal(Object value) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   859
        JCLiteral result = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   860
        if (value instanceof String) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   861
            result = Literal(CLASS, value).
06bc494ca11e Initial load
duke
parents:
diff changeset
   862
                setType(syms.stringType.constType(value));
06bc494ca11e Initial load
duke
parents:
diff changeset
   863
        } else if (value instanceof Integer) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   864
            result = Literal(INT, value).
06bc494ca11e Initial load
duke
parents:
diff changeset
   865
                setType(syms.intType.constType(value));
06bc494ca11e Initial load
duke
parents:
diff changeset
   866
        } else if (value instanceof Long) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   867
            result = Literal(LONG, value).
06bc494ca11e Initial load
duke
parents:
diff changeset
   868
                setType(syms.longType.constType(value));
06bc494ca11e Initial load
duke
parents:
diff changeset
   869
        } else if (value instanceof Byte) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   870
            result = Literal(BYTE, value).
06bc494ca11e Initial load
duke
parents:
diff changeset
   871
                setType(syms.byteType.constType(value));
06bc494ca11e Initial load
duke
parents:
diff changeset
   872
        } else if (value instanceof Character) {
7636
030f141aa32b 6504896: TreeMaker.Literal(Object) does not support Booleans
jjg
parents: 7074
diff changeset
   873
            int v = (int) (((Character) value).toString().charAt(0));
22154
3c8d86bf756b 8028415: TreeMaker.Literal(Object) creates invalid JCLiterals when passed a Character.
jlahoda
parents: 20244
diff changeset
   874
            result = Literal(CHAR, v).
7636
030f141aa32b 6504896: TreeMaker.Literal(Object) does not support Booleans
jjg
parents: 7074
diff changeset
   875
                setType(syms.charType.constType(v));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   876
        } else if (value instanceof Double) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   877
            result = Literal(DOUBLE, value).
06bc494ca11e Initial load
duke
parents:
diff changeset
   878
                setType(syms.doubleType.constType(value));
06bc494ca11e Initial load
duke
parents:
diff changeset
   879
        } else if (value instanceof Float) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   880
            result = Literal(FLOAT, value).
06bc494ca11e Initial load
duke
parents:
diff changeset
   881
                setType(syms.floatType.constType(value));
06bc494ca11e Initial load
duke
parents:
diff changeset
   882
        } else if (value instanceof Short) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   883
            result = Literal(SHORT, value).
06bc494ca11e Initial load
duke
parents:
diff changeset
   884
                setType(syms.shortType.constType(value));
7636
030f141aa32b 6504896: TreeMaker.Literal(Object) does not support Booleans
jjg
parents: 7074
diff changeset
   885
        } else if (value instanceof Boolean) {
030f141aa32b 6504896: TreeMaker.Literal(Object) does not support Booleans
jjg
parents: 7074
diff changeset
   886
            int v = ((Boolean) value) ? 1 : 0;
030f141aa32b 6504896: TreeMaker.Literal(Object) does not support Booleans
jjg
parents: 7074
diff changeset
   887
            result = Literal(BOOLEAN, v).
030f141aa32b 6504896: TreeMaker.Literal(Object) does not support Booleans
jjg
parents: 7074
diff changeset
   888
                setType(syms.booleanType.constType(v));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   889
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   890
            throw new AssertionError(value);
06bc494ca11e Initial load
duke
parents:
diff changeset
   891
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   892
        return result;
06bc494ca11e Initial load
duke
parents:
diff changeset
   893
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   894
06bc494ca11e Initial load
duke
parents:
diff changeset
   895
    class AnnotationBuilder implements Attribute.Visitor {
06bc494ca11e Initial load
duke
parents:
diff changeset
   896
        JCExpression result = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   897
        public void visitConstant(Attribute.Constant v) {
19251
c3b7abd43bc0 8020997: TreeMaker.AnnotationBuilder creates broken element literals with repeating annotations
vromero
parents: 17807
diff changeset
   898
            result = Literal(v.type.getTag(), v.value);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   899
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   900
        public void visitClass(Attribute.Class clazz) {
13689
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 11142
diff changeset
   901
            result = ClassLiteral(clazz.classType).setType(syms.classType);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   902
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   903
        public void visitEnum(Attribute.Enum e) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   904
            result = QualIdent(e.value);
06bc494ca11e Initial load
duke
parents:
diff changeset
   905
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   906
        public void visitError(Attribute.Error e) {
50400
dcbbc6fb0b69 8200166: Repeating annotations refering to to-be-generated classes don't work.
jlahoda
parents: 47216
diff changeset
   907
            if (e instanceof UnresolvedClass) {
dcbbc6fb0b69 8200166: Repeating annotations refering to to-be-generated classes don't work.
jlahoda
parents: 47216
diff changeset
   908
                result = ClassLiteral(((UnresolvedClass) e).classType).setType(syms.classType);
dcbbc6fb0b69 8200166: Repeating annotations refering to to-be-generated classes don't work.
jlahoda
parents: 47216
diff changeset
   909
            } else {
dcbbc6fb0b69 8200166: Repeating annotations refering to to-be-generated classes don't work.
jlahoda
parents: 47216
diff changeset
   910
                result = Erroneous();
dcbbc6fb0b69 8200166: Repeating annotations refering to to-be-generated classes don't work.
jlahoda
parents: 47216
diff changeset
   911
            }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   912
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   913
        public void visitCompound(Attribute.Compound compound) {
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   914
            if (compound instanceof Attribute.TypeCompound) {
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   915
                result = visitTypeCompoundInternal((Attribute.TypeCompound) compound);
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   916
            } else {
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   917
                result = visitCompoundInternal(compound);
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   918
            }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   919
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   920
        public JCAnnotation visitCompoundInternal(Attribute.Compound compound) {
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 22154
diff changeset
   921
            ListBuffer<JCExpression> args = new ListBuffer<>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   922
            for (List<Pair<Symbol.MethodSymbol,Attribute>> values = compound.values; values.nonEmpty(); values=values.tail) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   923
                Pair<MethodSymbol,Attribute> pair = values.head;
06bc494ca11e Initial load
duke
parents:
diff changeset
   924
                JCExpression valueTree = translate(pair.snd);
06bc494ca11e Initial load
duke
parents:
diff changeset
   925
                args.append(Assign(Ident(pair.fst), valueTree).setType(valueTree.type));
06bc494ca11e Initial load
duke
parents:
diff changeset
   926
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   927
            return Annotation(Type(compound.type), args.toList());
06bc494ca11e Initial load
duke
parents:
diff changeset
   928
        }
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   929
        public JCAnnotation visitTypeCompoundInternal(Attribute.TypeCompound compound) {
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 22154
diff changeset
   930
            ListBuffer<JCExpression> args = new ListBuffer<>();
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   931
            for (List<Pair<Symbol.MethodSymbol,Attribute>> values = compound.values; values.nonEmpty(); values=values.tail) {
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   932
                Pair<MethodSymbol,Attribute> pair = values.head;
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   933
                JCExpression valueTree = translate(pair.snd);
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   934
                args.append(Assign(Ident(pair.fst), valueTree).setType(valueTree.type));
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   935
            }
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   936
            return TypeAnnotation(Type(compound.type), args.toList());
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   937
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   938
        public void visitArray(Attribute.Array array) {
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 22154
diff changeset
   939
            ListBuffer<JCExpression> elems = new ListBuffer<>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   940
            for (int i = 0; i < array.values.length; i++)
06bc494ca11e Initial load
duke
parents:
diff changeset
   941
                elems.append(translate(array.values[i]));
42828
cce89649f958 8171371: Remove redundant type-arguments from generic method calls
mcimadamore
parents: 42407
diff changeset
   942
            result = NewArray(null, List.nil(), elems.toList()).setType(array.type);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   943
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   944
        JCExpression translate(Attribute a) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   945
            a.accept(this);
06bc494ca11e Initial load
duke
parents:
diff changeset
   946
            return result;
06bc494ca11e Initial load
duke
parents:
diff changeset
   947
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   948
        JCAnnotation translate(Attribute.Compound a) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   949
            return visitCompoundInternal(a);
06bc494ca11e Initial load
duke
parents:
diff changeset
   950
        }
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   951
        JCAnnotation translate(Attribute.TypeCompound a) {
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   952
            return visitTypeCompoundInternal(a);
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   953
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   954
    }
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   955
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   956
    AnnotationBuilder annotationBuilder = new AnnotationBuilder();
06bc494ca11e Initial load
duke
parents:
diff changeset
   957
06bc494ca11e Initial load
duke
parents:
diff changeset
   958
    /** Create an annotation tree from an attribute.
06bc494ca11e Initial load
duke
parents:
diff changeset
   959
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   960
    public JCAnnotation Annotation(Attribute a) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   961
        return annotationBuilder.translate((Attribute.Compound)a);
06bc494ca11e Initial load
duke
parents:
diff changeset
   962
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   963
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   964
    public JCAnnotation TypeAnnotation(Attribute a) {
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   965
        return annotationBuilder.translate((Attribute.TypeCompound) a);
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   966
    }
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   967
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   968
    /** Create a method definition from a method symbol and a method body.
06bc494ca11e Initial load
duke
parents:
diff changeset
   969
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   970
    public JCMethodDecl MethodDef(MethodSymbol m, JCBlock body) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   971
        return MethodDef(m, m.type, body);
06bc494ca11e Initial load
duke
parents:
diff changeset
   972
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   973
06bc494ca11e Initial load
duke
parents:
diff changeset
   974
    /** Create a method definition from a method symbol, method type
06bc494ca11e Initial load
duke
parents:
diff changeset
   975
     *  and a method body.
06bc494ca11e Initial load
duke
parents:
diff changeset
   976
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   977
    public JCMethodDecl MethodDef(MethodSymbol m, Type mtype, JCBlock body) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   978
        return (JCMethodDecl)
06bc494ca11e Initial load
duke
parents:
diff changeset
   979
            new JCMethodDecl(
14961
e731935052af 8005098: Provide isSynthesized() information on Attribute.Compound
jfranck
parents: 14725
diff changeset
   980
                Modifiers(m.flags(), Annotations(m.getRawAttributes())),
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   981
                m.name,
06bc494ca11e Initial load
duke
parents:
diff changeset
   982
                Type(mtype.getReturnType()),
06bc494ca11e Initial load
duke
parents:
diff changeset
   983
                TypeParams(mtype.getTypeArguments()),
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14961
diff changeset
   984
                null, // receiver type
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   985
                Params(mtype.getParameterTypes(), m),
06bc494ca11e Initial load
duke
parents:
diff changeset
   986
                Types(mtype.getThrownTypes()),
06bc494ca11e Initial load
duke
parents:
diff changeset
   987
                body,
06bc494ca11e Initial load
duke
parents:
diff changeset
   988
                null,
06bc494ca11e Initial load
duke
parents:
diff changeset
   989
                m).setPos(pos).setType(mtype);
06bc494ca11e Initial load
duke
parents:
diff changeset
   990
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   991
06bc494ca11e Initial load
duke
parents:
diff changeset
   992
    /** Create a type parameter tree from its name and type.
06bc494ca11e Initial load
duke
parents:
diff changeset
   993
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   994
    public JCTypeParameter TypeParam(Name name, TypeVar tvar) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   995
        return (JCTypeParameter)
06bc494ca11e Initial load
duke
parents:
diff changeset
   996
            TypeParameter(name, Types(types.getBounds(tvar))).setPos(pos).setType(tvar);
06bc494ca11e Initial load
duke
parents:
diff changeset
   997
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   998
06bc494ca11e Initial load
duke
parents:
diff changeset
   999
    /** Create a list of type parameter trees from a list of type variables.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1000
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
  1001
    public List<JCTypeParameter> TypeParams(List<Type> typarams) {
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 22154
diff changeset
  1002
        ListBuffer<JCTypeParameter> tparams = new ListBuffer<>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1003
        for (List<Type> l = typarams; l.nonEmpty(); l = l.tail)
06bc494ca11e Initial load
duke
parents:
diff changeset
  1004
            tparams.append(TypeParam(l.head.tsym.name, (TypeVar)l.head));
06bc494ca11e Initial load
duke
parents:
diff changeset
  1005
        return tparams.toList();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1006
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1007
06bc494ca11e Initial load
duke
parents:
diff changeset
  1008
    /** Create a value parameter tree from its name, type, and owner.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1009
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
  1010
    public JCVariableDecl Param(Name name, Type argtype, Symbol owner) {
19941
8b91e8eb2d20 7047734: javac, the LVT is not generated correctly in several scenarios
vromero
parents: 19251
diff changeset
  1011
        return VarDef(new VarSymbol(PARAMETER, name, argtype, owner), null);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1012
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1013
06bc494ca11e Initial load
duke
parents:
diff changeset
  1014
    /** Create a a list of value parameter trees x0, ..., xn from a list of
06bc494ca11e Initial load
duke
parents:
diff changeset
  1015
     *  their types and an their owner.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1016
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
  1017
    public List<JCVariableDecl> Params(List<Type> argtypes, Symbol owner) {
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 22154
diff changeset
  1018
        ListBuffer<JCVariableDecl> params = new ListBuffer<>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1019
        MethodSymbol mth = (owner.kind == MTH) ? ((MethodSymbol)owner) : null;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1020
        if (mth != null && mth.params != null && argtypes.length() == mth.params.length()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1021
            for (VarSymbol param : ((MethodSymbol)owner).params)
06bc494ca11e Initial load
duke
parents:
diff changeset
  1022
                params.append(VarDef(param, null));
06bc494ca11e Initial load
duke
parents:
diff changeset
  1023
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1024
            int i = 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1025
            for (List<Type> l = argtypes; l.nonEmpty(); l = l.tail)
06bc494ca11e Initial load
duke
parents:
diff changeset
  1026
                params.append(Param(paramName(i++), l.head, owner));
06bc494ca11e Initial load
duke
parents:
diff changeset
  1027
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1028
        return params.toList();
06bc494ca11e Initial load
duke
parents:
diff changeset
  1029
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1030
06bc494ca11e Initial load
duke
parents:
diff changeset
  1031
    /** Wrap a method invocation in an expression statement or return statement,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1032
     *  depending on whether the method invocation expression's type is void.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1033
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
  1034
    public JCStatement Call(JCExpression apply) {
14359
d4099818ab70 7200915: convert TypeTags from a series of small ints to an enum
jjg
parents: 13845
diff changeset
  1035
        return apply.type.hasTag(VOID) ? Exec(apply) : Return(apply);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1036
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1037
06bc494ca11e Initial load
duke
parents:
diff changeset
  1038
    /** Construct an assignment from a variable symbol and a right hand side.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1039
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
  1040
    public JCStatement Assignment(Symbol v, JCExpression rhs) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1041
        return Exec(Assign(Ident(v), rhs).setType(v.type));
06bc494ca11e Initial load
duke
parents:
diff changeset
  1042
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1043
06bc494ca11e Initial load
duke
parents:
diff changeset
  1044
    /** Construct an index expression from a variable and an expression.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1045
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
  1046
    public JCArrayAccess Indexed(Symbol v, JCExpression index) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1047
        JCArrayAccess tree = new JCArrayAccess(QualIdent(v), index);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1048
        tree.type = ((ArrayType)v.type).elemtype;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1049
        return tree;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1050
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1051
06bc494ca11e Initial load
duke
parents:
diff changeset
  1052
    /** Make an attributed type cast expression.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1053
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
  1054
    public JCTypeCast TypeCast(Type type, JCExpression expr) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1055
        return (JCTypeCast)TypeCast(Type(type), expr).setType(type);
06bc494ca11e Initial load
duke
parents:
diff changeset
  1056
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1057
06bc494ca11e Initial load
duke
parents:
diff changeset
  1058
/* ***************************************************************************
06bc494ca11e Initial load
duke
parents:
diff changeset
  1059
 * Helper methods.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1060
 ****************************************************************************/
06bc494ca11e Initial load
duke
parents:
diff changeset
  1061
06bc494ca11e Initial load
duke
parents:
diff changeset
  1062
    /** Can given symbol be referred to in unqualified form?
06bc494ca11e Initial load
duke
parents:
diff changeset
  1063
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
  1064
    boolean isUnqualifiable(Symbol sym) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1065
        if (sym.name == names.empty ||
06bc494ca11e Initial load
duke
parents:
diff changeset
  1066
            sym.owner == null ||
20244
d627dd086b41 8023835: TreeMaker.QualIdent() too leafy
jlahoda
parents: 19941
diff changeset
  1067
            sym.owner == syms.rootPackage ||
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1068
            sym.owner.kind == MTH || sym.owner.kind == VAR) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  1069
            return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1070
        } else if (sym.kind == TYP && toplevel != null) {
25443
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 25440
diff changeset
  1071
            Iterator<Symbol> it = toplevel.namedImportScope.getSymbolsByName(sym.name).iterator();
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 25440
diff changeset
  1072
            if (it.hasNext()) {
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 25440
diff changeset
  1073
                Symbol s = it.next();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1074
                return
25443
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 25440
diff changeset
  1075
                  s == sym &&
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 25440
diff changeset
  1076
                  !it.hasNext();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1077
            }
25443
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 25440
diff changeset
  1078
            it = toplevel.packge.members().getSymbolsByName(sym.name).iterator();
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 25440
diff changeset
  1079
            if (it.hasNext()) {
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 25440
diff changeset
  1080
                Symbol s = it.next();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1081
                return
25443
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 25440
diff changeset
  1082
                  s == sym &&
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 25440
diff changeset
  1083
                  !it.hasNext();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1084
            }
25443
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 25440
diff changeset
  1085
            it = toplevel.starImportScope.getSymbolsByName(sym.name).iterator();
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 25440
diff changeset
  1086
            if (it.hasNext()) {
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 25440
diff changeset
  1087
                Symbol s = it.next();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1088
                return
25443
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 25440
diff changeset
  1089
                  s == sym &&
9187d77f2c64 8031569: Refactor javac scope implementation to enable lazy imports
jlahoda
parents: 25440
diff changeset
  1090
                  !it.hasNext();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1091
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1092
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1093
        return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
  1094
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1095
06bc494ca11e Initial load
duke
parents:
diff changeset
  1096
    /** The name of synthetic parameter number `i'.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1097
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
  1098
    public Name paramName(int i)   { return names.fromString("x" + i); }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1099
06bc494ca11e Initial load
duke
parents:
diff changeset
  1100
    /** The name of synthetic type parameter number `i'.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1101
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
  1102
    public Name typaramName(int i) { return names.fromString("A" + i); }
06bc494ca11e Initial load
duke
parents:
diff changeset
  1103
}