src/jdk.compiler/share/classes/com/sun/tools/javac/util/Names.java
changeset 55306 ea43db53de91
parent 54130 641768acb12e
child 58109 ee07de0d2c16
equal deleted inserted replaced
55305:6e432194ee97 55306:ea43db53de91
     1 /*
     1 /*
     2  * Copyright (c) 1999, 2018, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1999, 2019, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    68     public final Name to;
    68     public final Name to;
    69     public final Name transitive;
    69     public final Name transitive;
    70     public final Name uses;
    70     public final Name uses;
    71     public final Name open;
    71     public final Name open;
    72     public final Name with;
    72     public final Name with;
       
    73     public final Name yield;
    73 
    74 
    74     // field and method names
    75     // field and method names
    75     public final Name _name;
    76     public final Name _name;
    76     public final Name addSuppressed;
    77     public final Name addSuppressed;
    77     public final Name any;
    78     public final Name any;
   217         to = fromString("to");
   218         to = fromString("to");
   218         transitive = fromString("transitive");
   219         transitive = fromString("transitive");
   219         uses = fromString("uses");
   220         uses = fromString("uses");
   220         open = fromString("open");
   221         open = fromString("open");
   221         with = fromString("with");
   222         with = fromString("with");
       
   223         yield = fromString("yield");
   222 
   224 
   223         // field and method names
   225         // field and method names
   224         _name = fromString("name");
   226         _name = fromString("name");
   225         addSuppressed = fromString("addSuppressed");
   227         addSuppressed = fromString("addSuppressed");
   226         any = fromString("<any>");
   228         any = fromString("<any>");