src/share/classes/com/sun/tools/javac/resources/compiler.properties

Fri, 31 Aug 2012 10:37:46 +0100

author
jfranck
date
Fri, 31 Aug 2012 10:37:46 +0100
changeset 1313
873ddd9f4900
parent 1297
e5cf1569d3a4
child 1338
ad2ca2a4ab5e
permissions
-rw-r--r--

7151010: Add compiler support for repeating annotations
Reviewed-by: jjg, mcimadamore

     1 #
     2 # Copyright (c) 1999, 2012, Oracle and/or its affiliates. All rights reserved.
     3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4 #
     5 # This code is free software; you can redistribute it and/or modify it
     6 # under the terms of the GNU General Public License version 2 only, as
     7 # published by the Free Software Foundation.  Oracle designates this
     8 # particular file as subject to the "Classpath" exception as provided
     9 # by Oracle in the LICENSE file that accompanied this code.
    10 #
    11 # This code is distributed in the hope that it will be useful, but WITHOUT
    12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    14 # version 2 for more details (a copy is included in the LICENSE file that
    15 # accompanied this code).
    16 #
    17 # You should have received a copy of the GNU General Public License version
    18 # 2 along with this work; if not, write to the Free Software Foundation,
    19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    20 #
    21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    22 # or visit www.oracle.com if you need additional information or have any
    23 # questions.
    24 #
    26 # Messages in this file which use "placeholders" for values (e.g. {0}, {1})
    27 # are preceded by a stylized comment describing the type of the corresponding
    28 # values.
    29 # The types currently in use are
    30 #
    31 # boolean           true or false
    32 # file name         the name of an input file; e.g.   MyFile.java
    33 # message segment   a sub-message; see compiler.misc.*
    34 # modifier          a Java modifier; e.g. public, private, protected
    35 # name              a name, typically a Java identifier
    36 # number            an integer
    37 # option name       the name of a command line option
    38 # source version    a source version number, such as 1.5, 1.6, 1.7
    39 # string            a general string
    40 # symbol            the name of a declared type
    41 # symbol kind       a description of the kind of a declaration; see compiler.misc.kindname.*
    42 # token             the name of a non-terminal in source code; see compiler.misc.token.*
    43 # type              a Java type; e.g. int, X, X<T>
    44 # unused            the value is not used in this message
    45 #
    46 # list of X         a comma-separated list of items; e.g. list of type
    47 # X or Y            alternation; e.g. message segment or type
    48 # set of X          a comma-separated collection of items; e.g. set of modifier
    49 #
    50 # These may be composed: e.g.   list of type or message segment
    51 #
    52 # These comments are verified by the jtreg test test/tools/javac/diags/MessageInfo,
    53 # using info derived from the collected set of examples in test/tools/javac/diags/examples.
    54 # MessageInfo can also be run as a standalone utility providing more facilities
    55 # for manipulating this file. For more details, see MessageInfo.java.
    57 ##
    58 ## errors
    59 ##
    61 # 0: symbol
    62 compiler.err.abstract.cant.be.instantiated=\
    63     {0} is abstract; cannot be instantiated
    65 compiler.err.abstract.meth.cant.have.body=\
    66     abstract methods cannot have a body
    68 compiler.err.already.annotated=\
    69     {0} {1} has already been annotated
    71 # 0: symbol kind, 1: symbol, 2: symbol kind, 3: symbol
    72 compiler.err.already.defined=\
    73     {0} {1} is already defined in {2} {3}
    75 # 0: symbol kind, 1: symbol, 2: symbol kind, 3: symbol kind, 4: symbol
    76 compiler.err.already.defined.in.clinit=\
    77     {0} {1} is already defined in {2} of {3} {4}
    79 # 0: string
    80 compiler.err.already.defined.single.import=\
    81     {0} is already defined in a single-type import
    83 # 0: string
    84 compiler.err.already.defined.static.single.import=\
    85     {0} is already defined in a static single-type import
    87 compiler.err.already.defined.this.unit=\
    88     {0} is already defined in this compilation unit
    90 # 0: type, 1: list of name
    91 compiler.err.annotation.missing.default.value=\
    92     annotation {0} is missing value for the attribute {1}
    94 # 0: type, 1: list of name
    95 compiler.err.annotation.missing.default.value.1=\
    96     annotation {0} is missing values for attributes {1}
    98 # 0: type
    99 compiler.err.annotation.not.valid.for.type=\
   100     annotation not valid for a value of type {0}
   102 compiler.err.annotation.type.not.applicable=\
   103     annotation type not applicable to this kind of declaration
   105 compiler.err.annotation.value.must.be.annotation=\
   106     annotation value must be an annotation
   108 compiler.err.annotation.value.must.be.class.literal=\
   109     annotation value must be a class literal
   111 compiler.err.annotation.value.must.be.name.value=\
   112     annotation values must be of the form ''name=value''
   114 compiler.err.annotation.value.not.allowable.type=\
   115     annotation value not of an allowable type
   117 compiler.err.anon.class.impl.intf.no.args=\
   118     anonymous class implements interface; cannot have arguments
   120 compiler.err.anon.class.impl.intf.no.typeargs=\
   121     anonymous class implements interface; cannot have type arguments
   123 compiler.err.anon.class.impl.intf.no.qual.for.new=\
   124     anonymous class implements interface; cannot have qualifier for new
   126 # 0: symbol, 1: symbol, 2: symbol
   127 compiler.err.array.and.varargs=\
   128     cannot declare both {0} and {1} in {2}
   130 compiler.err.array.dimension.missing=\
   131     array dimension missing
   133 # 0: type
   134 compiler.err.array.req.but.found=\
   135     array required, but {0} found
   137 compiler.err.attribute.value.must.be.constant=\
   138     attribute value must be constant
   140 # 0: statement type
   141 compiler.err.bad.initializer=\
   142     bad initializer for {0}
   144 compiler.err.break.outside.switch.loop=\
   145     break outside switch or loop
   147 # 0: name
   148 compiler.err.call.must.be.first.stmt.in.ctor=\
   149     call to {0} must be first statement in constructor
   151 compiler.err.cant.apply.symbol=\
   152     {0} {1} in {4} {5} cannot be applied to given types\n\
   153     required: {2}\n\
   154     found: {3}
   156 # 0: symbol kind, 1: name, 2: list of type or message segment, 3: list of type or message segment, 4: symbol kind, 5: type, 6: message segment
   157 compiler.err.cant.apply.symbol.1=\
   158     {0} {1} in {4} {5} cannot be applied to given types;\n\
   159     required: {2}\n\
   160     found: {3}\n\
   161     reason: {6}
   163 # 0: symbol kind, 1: name, 2: list of type
   164 compiler.err.cant.apply.symbols=\
   165     no suitable {0} found for {1}({2})
   167 # 0: symbol
   168 compiler.err.cant.assign.val.to.final.var=\
   169     cannot assign a value to final variable {0}
   171 # 0: symbol, 1: message segment
   172 compiler.err.cant.ref.non.effectively.final.var=\
   173     local variables referenced from {1} must be final or effectively final
   176 compiler.misc.inner.cls=\
   177     an inner class
   179 # 0: type
   180 compiler.err.cant.deref=\
   181     {0} cannot be dereferenced
   183 compiler.err.cant.extend.intf.annotation=\
   184     ''extends'' not allowed for @interfaces
   186 # 0: symbol
   187 compiler.err.cant.inherit.from.final=\
   188     cannot inherit from final {0}
   190 # 0: symbol
   191 compiler.err.cant.ref.before.ctor.called=\
   192     cannot reference {0} before supertype constructor has been called
   194 compiler.err.cant.ret.val.from.meth.decl.void=\
   195     cannot return a value from method whose result type is void
   197 compiler.err.cant.select.static.class.from.param.type=\
   198     cannot select a static class from a parameterized type
   200 # 0: symbol, 1: string, 2: string
   201 compiler.err.cant.inherit.diff.arg=\
   202     {0} cannot be inherited with different arguments: <{1}> and <{2}>
   204 compiler.err.catch.without.try=\
   205     ''catch'' without ''try''
   207 # 0: symbol kind, 1: symbol
   208 compiler.err.clash.with.pkg.of.same.name=\
   209     {0} {1} clashes with package of same name
   211 compiler.err.class.not.allowed=\
   212     class, interface or enum declaration not allowed here
   214 compiler.err.const.expr.req=\
   215     constant expression required
   217 compiler.err.cont.outside.loop=\
   218     continue outside of loop
   220 # 0: symbol
   221 compiler.err.cyclic.inheritance=\
   222     cyclic inheritance involving {0}
   224 compiler.err.cyclic.annotation.element=\
   225     cyclic annotation element type
   227 # 0: unused
   228 compiler.err.call.to.super.not.allowed.in.enum.ctor=\
   229     call to super not allowed in enum constructor
   231 # 0: type
   232 compiler.err.no.superclass=\
   233     {0} has no superclass
   235 # 0: symbol, 1: type, 2: symbol, 3: type, 4: unused
   236 compiler.err.concrete.inheritance.conflict=\
   237     methods {0} from {1} and {2} from {3} are inherited with the same signature
   239 compiler.err.default.allowed.in.intf.annotation.member=\
   240     default value only allowed in an @interface member
   242 # 0: symbol
   243 compiler.err.doesnt.exist=\
   244     package {0} does not exist
   246 compiler.err.duplicate.annotation=\
   247     duplicate annotation
   249 # 0: name, 1: type
   250 compiler.err.duplicate.annotation.member.value=\
   251     duplicate annotation member value {0} in {1}
   253 # 0: type
   254 compiler.err.duplicate.annotation.missing.container=\
   255     duplicate annotation, the declaration of {0} does not have a ContainedBy annotation
   257 # 0: type, 1: type
   258 compiler.err.invalid.container.no.containedby=\
   259     invalid contained repeatable annotation, {0} is not annotated with {1}
   261 # 0: type, 1: type
   262 compiler.err.invalid.container.wrong.containedby=\
   263     invalid contained repeatable annotation, {0} does not match {1}
   265 # 0: type, 1: type
   266 compiler.err.invalid.container.no.containerfor=\
   267     invalid container for repeating annotations, {0} is not annotated with {1}
   269 # 0: type, 1: type
   270 compiler.err.invalid.container.wrong.containerfor=\
   271     invalid container for repeating annotations, {0} does not match {1}
   273 # 0: type
   274 compiler.err.invalid.containedby.annotation=\
   275     duplicate annotation, {0} is annotated with an invalid ContainedBy annotation
   277 # 0: type
   278 compiler.err.invalid.containedby.annotation.no.value=\
   279     duplicate annotation, {0} is not a valid ContainedBy, no value element method declared
   281 # 0: type, 1: number
   282 compiler.err.invalid.containedby.annotation.multiple.values=\
   283     duplicate annotation, {0} is not a valid ContainedBy, {1} value element methods declared
   285 # 0: type
   286 compiler.err.invalid.containedby.annotation.invalid.value=\
   287     duplicate annotation, {0} is not a valid ContainedBy, invalid value element, need a method
   289 # 0: type, 1: type, 2: type
   290 compiler.err.invalid.containedby.annotation.value.return=\
   291     duplicate annotation, value element of containing annotation {0} should have type {2}, found {1}
   293 # 0: type, 1: symbol
   294 compiler.err.invalid.containedby.annotation.elem.nondefault=\
   295     duplicate annotation, element {1} in containing annotation {0} does not have a default value
   297 # 0: symbol, 1: type, 2: symbol, 3: type
   298 compiler.err.invalid.containedby.annotation.retention=\
   299     containing annotation {0} has shorter retention ({1}) than the contained annotation {2} with retention {3}
   301 # 0: symbol, 1: symbol
   302 compiler.err.invalid.containedby.annotation.not.documented=\
   303     containing annotation type, {0}, is not @Documented while repeated annotation type, {1}, is
   305 # 0: symbol, 1: symbol
   306 compiler.err.invalid.containedby.annotation.not.inherited=\
   307     containing annotation type, {0}, is not @Inherited while repeated annotation type, {1}, is
   309 # 0: symbol, 1: symbol
   310 compiler.err.invalid.containedby.annotation.incompatible.target=\
   311     target of container annotation {0} is not a subset of target of repeated annotation {1}
   313 # 0: symbol
   314 compiler.err.invalid.containedby.annotation.repeated.and.container.present=\
   315     container {0} must not be present at the same time as the element it contains
   317 # 0: name
   318 compiler.err.duplicate.class=\
   319     duplicate class: {0}
   321 compiler.err.duplicate.case.label=\
   322     duplicate case label
   324 compiler.err.duplicate.default.label=\
   325     duplicate default label
   327 compiler.err.else.without.if=\
   328     ''else'' without ''if''
   330 compiler.err.empty.char.lit=\
   331     empty character literal
   333 # 0: symbol
   334 compiler.err.encl.class.required=\
   335     an enclosing instance that contains {0} is required
   337 compiler.err.enum.annotation.must.be.enum.constant=\
   338     an enum annotation value must be an enum constant
   340 compiler.err.enum.cant.be.instantiated=\
   341     enum types may not be instantiated
   343 compiler.err.enum.label.must.be.unqualified.enum=\
   344     an enum switch case label must be the unqualified name of an enumeration constant
   346 compiler.err.enum.no.subclassing=\
   347     classes cannot directly extend java.lang.Enum
   349 compiler.err.enum.types.not.extensible=\
   350     enum types are not extensible
   352 compiler.err.enum.no.finalize=\
   353     enums cannot have finalize methods
   355 # 0: file name, 1: string
   356 compiler.err.error.reading.file=\
   357     error reading {0}; {1}
   359 # 0: type
   360 compiler.err.except.already.caught=\
   361     exception {0} has already been caught
   363 # 0: type
   364 compiler.err.except.never.thrown.in.try=\
   365     exception {0} is never thrown in body of corresponding try statement
   367 # 0: symbol
   368 compiler.err.final.parameter.may.not.be.assigned=\
   369     final parameter {0} may not be assigned
   371 # 0: symbol
   372 compiler.err.try.resource.may.not.be.assigned=\
   373     auto-closeable resource {0} may not be assigned
   375 # 0: symbol
   376 compiler.err.multicatch.parameter.may.not.be.assigned=\
   377     multi-catch parameter {0} may not be assigned
   379 # 0: type, 1: type
   380 compiler.err.multicatch.types.must.be.disjoint=\
   381     Alternatives in a multi-catch statement cannot be related by subclassing\n\
   382     Alternative {0} is a subclass of alternative {1}
   384 compiler.err.finally.without.try=\
   385     ''finally'' without ''try''
   387 # 0: type, 1: message segment
   388 compiler.err.foreach.not.applicable.to.type=\
   389     for-each not applicable to expression type\n\
   390     required: {1}\n\
   391     found:    {0}
   393 compiler.err.fp.number.too.large=\
   394     floating point number too large
   396 compiler.err.fp.number.too.small=\
   397     floating point number too small
   399 compiler.err.generic.array.creation=\
   400     generic array creation
   402 compiler.err.generic.throwable=\
   403     a generic class may not extend java.lang.Throwable
   405 # 0: symbol
   406 compiler.err.icls.cant.have.static.decl=\
   407     Illegal static declaration in inner class {0}\n\
   408     modifier \''static\'' is only allowed in constant variable declarations
   410 # 0: string
   411 compiler.err.illegal.char=\
   412     illegal character: \\{0}
   414 compiler.err.illegal.char.for.encoding=\
   415     unmappable character for encoding {0}
   417 # 0: set of modifier, 1: set of modifier
   418 compiler.err.illegal.combination.of.modifiers=\
   419     illegal combination of modifiers: {0} and {1}
   421 compiler.err.illegal.enum.static.ref=\
   422     illegal reference to static field from initializer
   424 compiler.err.illegal.esc.char=\
   425     illegal escape character
   427 compiler.err.illegal.forward.ref=\
   428     illegal forward reference
   430 # 0: symbol
   431 compiler.warn.forward.ref=\
   432     reference to variable ''{0}'' before it has been initialized
   434 compiler.err.illegal.self.ref=\
   435     self-reference in initializer
   437 # 0: symbol
   438 compiler.warn.self.ref=\
   439     self-reference in initializer of variable ''{0}''
   441 compiler.err.illegal.generic.type.for.instof=\
   442     illegal generic type for instanceof
   444 # 0: type
   445 compiler.err.illegal.initializer.for.type=\
   446     illegal initializer for {0}
   448 compiler.err.illegal.line.end.in.char.lit=\
   449     illegal line end in character literal
   451 compiler.err.illegal.nonascii.digit=\
   452     illegal non-ASCII digit
   454 compiler.err.illegal.underscore=\
   455     illegal underscore
   457 compiler.err.illegal.dot=\
   458     illegal ''.''
   460 # 0: symbol
   461 compiler.err.illegal.qual.not.icls=\
   462     illegal qualifier; {0} is not an inner class
   464 compiler.err.illegal.start.of.expr=\
   465     illegal start of expression
   467 compiler.err.illegal.start.of.stmt=\
   468     illegal start of statement
   470 compiler.err.illegal.start.of.type=\
   471     illegal start of type
   473 compiler.err.illegal.unicode.esc=\
   474     illegal unicode escape
   476 # 0: symbol
   477 compiler.err.import.requires.canonical=\
   478     import requires canonical name for {0}
   480 compiler.err.improperly.formed.type.param.missing=\
   481     improperly formed type, some parameters are missing
   483 compiler.err.improperly.formed.type.inner.raw.param=\
   484     improperly formed type, type arguments given on a raw type
   486 # 0: type, 1: type
   487 compiler.err.incomparable.types=\
   488     incomparable types: {0} and {1}
   490 # 0: number
   491 compiler.err.int.number.too.large=\
   492     integer number too large: {0}
   494 compiler.err.intf.annotation.members.cant.have.params=\
   495     @interface members may not have parameters
   497 compiler.err.intf.annotation.cant.have.type.params=\
   498     @interface may not have type parameters
   500 compiler.err.intf.annotation.members.cant.have.type.params=\
   501     @interface members may not have type parameters
   503 # 0: symbol, 1: type
   504 compiler.err.intf.annotation.member.clash=\
   505     @interface member clashes with method ''{0}'' in {1}
   507 compiler.err.intf.expected.here=\
   508     interface expected here
   510 compiler.err.intf.meth.cant.have.body=\
   511     interface methods cannot have body
   513 compiler.err.invalid.annotation.member.type=\
   514     invalid type for annotation member
   516 compiler.err.invalid.binary.number=\
   517     binary numbers must contain at least one binary digit
   519 compiler.err.invalid.hex.number=\
   520     hexadecimal numbers must contain at least one hexadecimal digit
   522 compiler.err.invalid.meth.decl.ret.type.req=\
   523     invalid method declaration; return type required
   525 compiler.err.varargs.and.old.array.syntax=\
   526     legacy array notation not allowed on variable-arity parameter
   528 compiler.err.variable.not.allowed=\
   529     variable declaration not allowed here
   531 # 0: name
   532 compiler.err.label.already.in.use=\
   533     label {0} already in use
   535 # 0: symbol
   536 compiler.err.local.var.accessed.from.icls.needs.final=\
   537     local variable {0} is accessed from within inner class; needs to be declared final
   539 compiler.err.local.enum=\
   540     enum types must not be local
   542 compiler.err.cannot.create.array.with.type.arguments=\
   543     cannot create array with type arguments
   545 compiler.err.cannot.create.array.with.diamond=\
   546     cannot create array with ''<>''
   548 #
   549 # limits.  We don't give the limits in the diagnostic because we expect
   550 # them to change, yet we want to use the same diagnostic.  These are all
   551 # detected during code generation.
   552 #
   553 compiler.err.limit.code=\
   554     code too large
   556 compiler.err.limit.code.too.large.for.try.stmt=\
   557     code too large for try statement
   559 compiler.err.limit.dimensions=\
   560     array type has too many dimensions
   562 compiler.err.limit.locals=\
   563     too many local variables
   565 compiler.err.limit.parameters=\
   566     too many parameters
   568 compiler.err.limit.pool=\
   569     too many constants
   571 compiler.err.limit.pool.in.class=\
   572     too many constants in class {0}
   574 compiler.err.limit.stack=\
   575     code requires too much stack
   577 compiler.err.limit.string=\
   578     constant string too long
   580 compiler.err.limit.string.overflow=\
   581     UTF8 representation for string \"{0}...\" is too long for the constant pool
   583 compiler.err.malformed.fp.lit=\
   584     malformed floating point literal
   586 compiler.err.method.does.not.override.superclass=\
   587     method does not override or implement a method from a supertype
   589 compiler.err.missing.meth.body.or.decl.abstract=\
   590     missing method body, or declare abstract
   592 compiler.err.missing.ret.stmt=\
   593     missing return statement
   595 compiler.err.missing.ret.val=\
   596     missing return value
   598 # 0: set of modifier
   599 compiler.err.mod.not.allowed.here=\
   600     modifier {0} not allowed here
   602 compiler.err.intf.not.allowed.here=\
   603     interface not allowed here
   605 compiler.err.enums.must.be.static=\
   606     enum declarations allowed only in static contexts
   608 # 0: symbol, 1: symbol
   609 compiler.err.name.clash.same.erasure=\
   610     name clash: {0} and {1} have the same erasure
   612 # 0: symbol, 1: symbol, 2: symbol, 3: symbol, 4: unused, 5: unused
   613 compiler.err.name.clash.same.erasure.no.override=\
   614     name clash: {0} in {1} and {2} in {3} have the same erasure, yet neither overrides the other
   616 # 0: symbol, 1: symbol, 2: symbol, 3: symbol, 4: symbol, 5: symbol
   617 compiler.err.name.clash.same.erasure.no.override.1=\
   618     name clash: {0} in {1} overrides a method whose erasure is the same as another method, yet neither overrides the other\n\
   619     first method:  {2} in {3}\n\
   620     second method: {4} in {5}
   622 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
   623 compiler.err.name.clash.same.erasure.no.hide=\
   624     name clash: {0} in {1} and {2} in {3} have the same erasure, yet neither hides the other
   626 compiler.err.name.reserved.for.internal.use=\
   627     {0} is reserved for internal use
   629 compiler.err.native.meth.cant.have.body=\
   630     native methods cannot have a body
   632 # 0: type, 1: type
   633 compiler.err.neither.conditional.subtype=\
   634     incompatible types for ?: neither is a subtype of the other\n\
   635     second operand: {0}\n\
   636     third operand : {1}
   638 compiler.err.new.not.allowed.in.annotation=\
   639     ''new'' not allowed in an annotation
   641 compiler.err.no.annotation.member=\
   642     no annotation member {0} in {1}
   644 compiler.err.no.encl.instance.of.type.in.scope=\
   645     no enclosing instance of type {0} is in scope
   647 compiler.err.no.intf.expected.here=\
   648     no interface expected here
   650 compiler.err.no.match.entry=\
   651     {0} has no match in entry in {1}; required {2}
   653 compiler.err.not.annotation.type=\
   654     {0} is not an annotation type
   656 # 0: symbol, 1: symbol
   657 compiler.err.not.def.access.class.intf.cant.access=\
   658     {0} in {1} is defined in an inaccessible class or interface
   660 # 0: symbol, 1: symbol
   661 compiler.err.not.def.public.cant.access=\
   662     {0} is not public in {1}; cannot be accessed from outside package
   664 # 0: name
   665 compiler.err.not.loop.label=\
   666     not a loop label: {0}
   668 compiler.err.not.stmt=\
   669     not a statement
   671 # 0: symbol
   672 compiler.err.not.encl.class=\
   673     not an enclosing class: {0}
   675 # 0: name, 1: type, 2: unused
   676 compiler.err.operator.cant.be.applied=\
   677     bad operand type {1} for unary operator ''{0}''
   679 # 0: name, 1: type, 2: type
   680 compiler.err.operator.cant.be.applied.1=\
   681     bad operand types for binary operator ''{0}''\n\
   682     first type:  {1}\n\
   683     second type: {2}
   685 compiler.err.pkg.annotations.sb.in.package-info.java=\
   686     package annotations should be in file package-info.java
   688 # 0: symbol
   689 compiler.err.pkg.clashes.with.class.of.same.name=\
   690     package {0} clashes with class of same name
   692 compiler.err.warnings.and.werror=\
   693     warnings found and -Werror specified
   695 # Errors related to annotation processing
   697 # 0: symbol, 1: string, 2: stack-trace
   698 compiler.err.proc.cant.access=\
   699     cannot access {0}\n\
   700     {1}\n\
   701     Consult the following stack trace for details.\n\
   702     {2}
   704 # 0: symbol, 1: string
   705 compiler.err.proc.cant.access.1=\
   706     cannot access {0}\n\
   707     {1}
   709 # 0: string
   710 compiler.err.proc.cant.find.class=\
   711     Could not find class file for ''{0}''.
   713 # Print a client-generated error message; assumed to be localized, no translation required
   714 # 0: string
   715 compiler.err.proc.messager=\
   716     {0}
   718 # 0: list of string
   719 compiler.err.proc.no.explicit.annotation.processing.requested=\
   720     Class names, ''{0}'', are only accepted if annotation processing is explicitly requested
   722 compiler.err.proc.no.service=\
   723     A ServiceLoader was not usable and is required for annotation processing.
   725 compiler.err.proc.processor.bad.option.name=\
   726     Bad option name ''{0}'' provided by processor ''{1}''
   728 # 0: string
   729 compiler.err.proc.processor.cant.instantiate=\
   730     Could not instantiate an instance of processor ''{0}''
   732 # 0: string
   733 compiler.err.proc.processor.not.found=\
   734     Annotation processor ''{0}'' not found
   736 # 0: string
   737 compiler.err.proc.processor.wrong.type=\
   738     Annotation processor ''{0}'' does not implement javax.annotation.processing.Processor
   740 compiler.err.proc.service.problem=\
   741     Error creating a service loader to load Processors.
   743 compiler.err.proc.bad.config.file=\
   744     Bad service configuration file, or exception thrown while constructing Processor object: {0}
   746 compiler.err.proc.cant.create.loader=\
   747     Could not create class loader for annotation processors: {0}
   749 # 0: unused
   750 compiler.err.qualified.new.of.static.class=\
   751     qualified new of static class
   753 compiler.err.recursive.ctor.invocation=\
   754     recursive constructor invocation
   756 # 0: name, 1: symbol kind, 2: symbol, 3: symbol, 4: symbol kind, 5: symbol, 6: symbol
   757 compiler.err.ref.ambiguous=\
   758     reference to {0} is ambiguous, both {1} {2} in {3} and {4} {5} in {6} match
   760 compiler.err.repeated.annotation.target=\
   761     repeated annotation target
   763 compiler.err.repeated.interface=\
   764     repeated interface
   766 compiler.err.repeated.modifier=\
   767     repeated modifier
   769 # 0: symbol, 1: set of modifier, 2: symbol
   770 compiler.err.report.access=\
   771     {0} has {1} access in {2}
   773 compiler.err.ret.outside.meth=\
   774     return outside method
   776 compiler.err.signature.doesnt.match.supertype=\
   777     signature does not match {0}; incompatible supertype
   779 compiler.err.signature.doesnt.match.intf=\
   780     signature does not match {0}; incompatible interfaces
   782 # 0: symbol, 1: symbol, 2: symbol
   783 compiler.err.does.not.override.abstract=\
   784     {0} is not abstract and does not override abstract method {1} in {2}
   786 compiler.err.source.cant.overwrite.input.file=\
   787     error writing source; cannot overwrite input file {0}
   789 compiler.err.stack.sim.error=\
   790     Internal error: stack sim error on {0}
   792 compiler.err.static.imp.only.classes.and.interfaces=\
   793     static import only from classes and interfaces
   795 compiler.err.string.const.req=\
   796     constant string expression required
   798 # 0: symbol, 1: symbol
   799 compiler.err.synthetic.name.conflict=\
   800     the symbol {0} conflicts with a compiler-synthesized symbol in {1}
   802 # 0: symbol, 1: symbol
   803 compiler.warn.synthetic.name.conflict=\
   804     the symbol {0} conflicts with a compiler-synthesized symbol in {1}
   806 compiler.err.throws.not.allowed.in.intf.annotation=\
   807     throws clause not allowed in @interface members
   809 compiler.err.try.without.catch.or.finally=\
   810     ''try'' without ''catch'' or ''finally''
   812 compiler.err.try.without.catch.finally.or.resource.decls=\
   813     ''try'' without ''catch'', ''finally'' or resource declarations
   815 # 0: symbol
   816 compiler.err.type.doesnt.take.params=\
   817     type {0} does not take parameters
   819 compiler.err.type.var.cant.be.deref=\
   820     cannot select from a type variable
   822 compiler.err.type.var.may.not.be.followed.by.other.bounds=\
   823     a type variable may not be followed by other bounds
   825 compiler.err.type.var.more.than.once=\
   826     type variable {0} occurs more than once in result type of {1}; cannot be left uninstantiated
   828 compiler.err.type.var.more.than.once.in.result=\
   829     type variable {0} occurs more than once in type of {1}; cannot be left uninstantiated
   831 # 0: type, 1: type, 2: string
   832 compiler.err.types.incompatible.diff.ret=\
   833     types {0} and {1} are incompatible; both define {2}, but with unrelated return types
   835 compiler.err.unclosed.char.lit=\
   836     unclosed character literal
   838 compiler.err.unclosed.comment=\
   839     unclosed comment
   841 compiler.err.unclosed.str.lit=\
   842     unclosed string literal
   844 # 0: name
   845 compiler.err.unsupported.encoding=\
   846     unsupported encoding: {0}
   848 compiler.err.io.exception=\
   849     error reading source file: {0}
   851 # 0: name
   852 compiler.err.undef.label=\
   853     undefined label: {0}
   855 # 0: message segment, 1: unused
   856 compiler.err.cant.apply.diamond=\
   857     cannot infer type arguments for {0}
   859 # 0: message segment or type, 1: message segment
   860 compiler.err.cant.apply.diamond.1=\
   861     cannot infer type arguments for {0}\n\
   862     reason: {1}
   864 # 0: message segment or type, 1: message segment
   865 compiler.misc.cant.apply.diamond.1=\
   866     cannot infer type arguments for {0}\n\
   867     reason: {1}
   869 compiler.err.unreachable.stmt=\
   870     unreachable statement
   872 compiler.err.initializer.must.be.able.to.complete.normally=\
   873     initializer must be able to complete normally
   875 # 0: type
   876 compiler.err.unreported.exception.need.to.catch.or.throw=\
   877     unreported exception {0}; must be caught or declared to be thrown
   879 # 0: type
   880 compiler.err.unreported.exception.default.constructor=\
   881     unreported exception {0} in default constructor
   883 # 0: type, 1: name
   884 compiler.err.unreported.exception.implicit.close=\
   885     unreported exception {0}; must be caught or declared to be thrown\n\
   886     exception thrown from implicit call to close() on resource variable ''{1}''
   888 compiler.err.unsupported.cross.fp.lit=\
   889     hexadecimal floating-point literals are not supported on this VM
   891 compiler.err.void.not.allowed.here=\
   892     ''void'' type not allowed here
   894 # 0: string
   895 compiler.err.wrong.number.type.args=\
   896     wrong number of type arguments; required {0}
   898 # 0: symbol
   899 compiler.err.var.might.already.be.assigned=\
   900     variable {0} might already have been assigned
   902 # 0: symbol
   903 compiler.err.var.might.not.have.been.initialized=\
   904     variable {0} might not have been initialized
   906 # 0: symbol
   907 compiler.err.var.might.be.assigned.in.loop=\
   908     variable {0} might be assigned in loop
   910 # 0: symbol, 1: message segment
   911 compiler.err.varargs.invalid.trustme.anno=\
   912     Invalid {0} annotation. {1}
   914 # 0: type
   915 compiler.misc.varargs.trustme.on.reifiable.varargs=\
   916     Varargs element type {0} is reifiable.
   918 # 0: symbol
   919 compiler.misc.varargs.trustme.on.non.varargs.meth=\
   920     Method {0} is not a varargs method.
   922 # 0: symbol
   923 compiler.misc.varargs.trustme.on.virtual.varargs=\
   924     Instance method {0} is not final.
   926 # 0: type, 1: symbol kind, 2: symbol
   927 compiler.misc.inaccessible.varargs.type=\
   928     formal varargs element type {0} is not accessible from {1} {2}
   930 # In the following string, {1} will always be the detail message from
   931 # java.io.IOException.
   932 # 0: symbol, 1: string
   933 compiler.err.class.cant.write=\
   934     error while writing {0}: {1}
   936 # In the following string, {0} is the name of the class in the Java source.
   937 # It really should be used two times..
   938 # 0: name
   939 compiler.err.class.public.should.be.in.file=\
   940     class {0} is public, should be declared in a file named {0}.java
   942 ## All errors which do not refer to a particular line in the source code are
   943 ## preceded by this string.
   944 compiler.err.error=\
   945     error:\u0020
   947 # The following error messages do not refer to a line in the source code.
   948 compiler.err.cant.read.file=\
   949     cannot read: {0}
   951 #####
   953 # Fatal Errors
   955 compiler.misc.fatal.err.no.java.lang=\
   956     Fatal Error: Unable to find package java.lang in classpath or bootclasspath
   958 compiler.misc.fatal.err.cant.locate.meth=\
   959     Fatal Error: Unable to find method {0}
   961 compiler.misc.fatal.err.cant.locate.field=\
   962     Fatal Error: Unable to find field {0}
   964 compiler.misc.fatal.err.cant.locate.ctor=\
   965     Fatal Error: Unable to find constructor for {0}
   967 compiler.misc.fatal.err.cant.close=\
   968     Fatal Error: Cannot close compiler resources
   970 #####
   972 ##
   973 ## miscellaneous strings
   974 ##
   976 compiler.misc.source.unavailable=\
   977     (source unavailable)
   979 compiler.misc.base.membership=\
   980     all your base class are belong to us
   982 # 0: string, 1: string, 2: boolean
   983 compiler.misc.x.print.processor.info=\
   984     Processor {0} matches {1} and returns {2}.
   986 # 0: number, 1: string, 2: set of symbol, 3: boolean
   987 compiler.misc.x.print.rounds=\
   988     Round {0}:\n\tinput files: {1}\n\tannotations: {2}\n\tlast round: {3}
   990 #####
   992 ## The following string will appear before all messages keyed as:
   993 ## "compiler.note".
   994 compiler.note.note=\
   995     Note:\u0020
   997 # 0: file name
   998 compiler.note.deprecated.filename=\
   999     {0} uses or overrides a deprecated API.
  1001 compiler.note.deprecated.plural=\
  1002     Some input files use or override a deprecated API.
  1004 # The following string may appear after one of the above deprecation
  1005 # messages.
  1006 compiler.note.deprecated.recompile=\
  1007     Recompile with -Xlint:deprecation for details.
  1009 # 0: file name
  1010 compiler.note.deprecated.filename.additional=\
  1011     {0} has additional uses or overrides of a deprecated API.
  1013 compiler.note.deprecated.plural.additional=\
  1014     Some input files additionally use or override a deprecated API.
  1016 # 0: file name
  1017 compiler.note.unchecked.filename=\
  1018     {0} uses unchecked or unsafe operations.
  1020 compiler.note.unchecked.plural=\
  1021     Some input files use unchecked or unsafe operations.
  1023 # The following string may appear after one of the above deprecation
  1024 # messages.
  1025 compiler.note.unchecked.recompile=\
  1026     Recompile with -Xlint:unchecked for details.
  1028 # 0: file name
  1029 compiler.note.unchecked.filename.additional=\
  1030     {0} has additional unchecked or unsafe operations.
  1032 compiler.note.unchecked.plural.additional=\
  1033     Some input files additionally use unchecked or unsafe operations.
  1035 # 0: file name
  1036 compiler.note.sunapi.filename=\
  1037     {0} uses internal proprietary API that may be removed in a future release.
  1039 compiler.note.sunapi.plural=\
  1040     Some input files use internal proprietary API that may be removed in a future release.
  1042 # The following string may appear after one of the above sunapi messages.
  1043 compiler.note.sunapi.recompile=\
  1044     Recompile with -Xlint:sunapi for details.
  1046 # 0: file name
  1047 compiler.note.sunapi.filename.additional=\
  1048     {0} uses additional internal proprietary API that may be removed in a future release.
  1050 compiler.note.sunapi.plural.additional=\
  1051     Some input files additionally use internal proprietary API that may be removed in a future release.
  1053 # Notes related to annotation processing
  1055 # Print a client-generated note; assumed to be localized, no translation required
  1056 # 0: string
  1057 compiler.note.proc.messager=\
  1058     {0}
  1060 #####
  1062 # 0: number
  1063 compiler.misc.count.error=\
  1064     {0} error
  1066 # 0: number
  1067 compiler.misc.count.error.plural=\
  1068     {0} errors
  1070 # 0: number
  1071 compiler.misc.count.warn=\
  1072     {0} warning
  1074 # 0: number
  1075 compiler.misc.count.warn.plural=\
  1076     {0} warnings
  1078 compiler.misc.version.not.available=\
  1079     (version info not available)
  1081 ## extra output when using -verbose (JavaCompiler)
  1083 # 0: symbol
  1084 compiler.misc.verbose.checking.attribution=\
  1085     [checking {0}]
  1087 # 0: string
  1088 compiler.misc.verbose.parsing.done=\
  1089     [parsing completed {0}ms]
  1091 # 0: file name
  1092 compiler.misc.verbose.parsing.started=\
  1093     [parsing started {0}]
  1095 # 0: string
  1096 compiler.misc.verbose.total=\
  1097     [total {0}ms]
  1099 # 0: file name
  1100 compiler.misc.verbose.wrote.file=\
  1101     [wrote {0}]
  1103 ## extra output when using -verbose (Retro)
  1104 compiler.misc.verbose.retro=\
  1105     [retrofitting {0}]
  1107 compiler.misc.verbose.retro.with=\
  1108     \tretrofitting {0} with {1}
  1110 compiler.misc.verbose.retro.with.list=\
  1111     \tretrofitting {0} with type parameters {1}, supertype {2}, interfaces {3}
  1113 ## extra output when using -verbose (code/ClassReader)
  1114 # 0: string
  1115 compiler.misc.verbose.loading=\
  1116     [loading {0}]
  1118 # 0: string
  1119 compiler.misc.verbose.sourcepath=\
  1120     [search path for source files: {0}]
  1122 # 0: string
  1123 compiler.misc.verbose.classpath=\
  1124     [search path for class files: {0}]
  1126 ## extra output when using -checkclassfile (code/ClassReader)
  1127 compiler.misc.ccf.found.later.version=\
  1128     class file has later version than expected: {0}
  1130 compiler.misc.ccf.unrecognized.attribute=\
  1131     unrecognized attribute: {0}
  1133 ## extra output when using -prompt (util/Log)
  1134 compiler.misc.resume.abort=\
  1135     R)esume, A)bort>
  1137 #####
  1139 ##
  1140 ## warnings
  1141 ##
  1143 ## All warning messages are preceded by the following string.
  1144 compiler.warn.warning=\
  1145     warning:\u0020
  1147 ## Warning messages may also include the following prefix to identify a
  1148 ## lint option
  1149 # 0: option name
  1150 compiler.warn.lintOption=\
  1151     [{0}]\u0020
  1153 # 0: symbol
  1154 compiler.warn.constant.SVUID=\
  1155     serialVersionUID must be constant in class {0}
  1157 # 0: file name
  1158 compiler.warn.dir.path.element.not.found=\
  1159     bad path element "{0}": no such directory
  1161 compiler.warn.finally.cannot.complete=\
  1162     finally clause cannot complete normally
  1164 # 0: symbol, 1: symbol
  1165 compiler.warn.has.been.deprecated=\
  1166     {0} in {1} has been deprecated
  1168 # 0: symbol
  1169 compiler.warn.sun.proprietary=\
  1170     {0} is internal proprietary API and may be removed in a future release
  1172 compiler.warn.illegal.char.for.encoding=\
  1173     unmappable character for encoding {0}
  1175 # 0: symbol
  1176 compiler.warn.improper.SVUID=\
  1177     serialVersionUID must be declared static final in class {0}
  1179 # 0: type, 1: type
  1180 compiler.warn.inexact.non-varargs.call=\
  1181     non-varargs call of varargs method with inexact argument type for last parameter;\n\
  1182     cast to {0} for a varargs call\n\
  1183     cast to {1} for a non-varargs call and to suppress this warning
  1185 # 0: list of type
  1186 compiler.warn.unreachable.catch=\
  1187     unreachable catch clause\n\
  1188     thrown type {0} has already been caught
  1190 # 0: list of type
  1191 compiler.warn.unreachable.catch.1=\
  1192     unreachable catch clause\n\
  1193     thrown types {0} have already been caught
  1195 # 0: symbol
  1196 compiler.warn.long.SVUID=\
  1197     serialVersionUID must be of type long in class {0}
  1199 # 0: symbol
  1200 compiler.warn.missing.SVUID=\
  1201     serializable class {0} has no definition of serialVersionUID
  1203 # 0: message segment
  1204 compiler.warn.override.varargs.missing=\
  1205     {0}; overridden method has no ''...''
  1207 # 0: message segment
  1208 compiler.warn.override.varargs.extra=\
  1209     {0}; overriding method is missing ''...''
  1211 compiler.warn.override.bridge=\
  1212     {0}; overridden method is a bridge method
  1214 # 0: symbol
  1215 compiler.warn.pkg-info.already.seen=\
  1216     a package-info.java file has already been seen for package {0}
  1218 # 0: file name
  1219 compiler.warn.path.element.not.found=\
  1220     bad path element "{0}": no such file or directory
  1222 compiler.warn.possible.fall-through.into.case=\
  1223     possible fall-through into case
  1225 # 0: type
  1226 compiler.warn.redundant.cast=\
  1227     redundant cast to {0}
  1229 # 0: number
  1230 compiler.warn.position.overflow=\
  1231     Position encoding overflows at line {0}
  1233 # 0: file name, 1: number, 2: number
  1234 compiler.warn.big.major.version=\
  1235     {0}: major version {1} is newer than {2}, the highest major version supported by this compiler.\n\
  1236     It is recommended that the compiler be upgraded.
  1238 # 0: symbol kind, 1: symbol
  1239 compiler.warn.static.not.qualified.by.type=\
  1240     static {0} should be qualified by type name, {1}, instead of by an expression
  1242 # 0: string
  1243 compiler.warn.source.no.bootclasspath=\
  1244     bootstrap class path not set in conjunction with -source {0}
  1246 # 0: name, 1: number, 2: number, 3: number, 4: number
  1247 compiler.warn.future.attr=\
  1248     {0} attribute introduced in version {1}.{2} class files is ignored in version {3}.{4} class files
  1250 # Warnings related to annotation processing
  1251 # 0: name
  1252 compiler.warn.proc.package.does.not.exist=\
  1253     package {0} does not exist
  1255 # 0: name
  1256 compiler.warn.proc.file.reopening=\
  1257     Attempt to create a file for ''{0}'' multiple times
  1259 # 0: name
  1260 compiler.warn.proc.type.already.exists=\
  1261     A file for type ''{0}'' already exists on the sourcepath or classpath
  1263 # 0: name
  1264 compiler.warn.proc.type.recreate=\
  1265     Attempt to create a file for type ''{0}'' multiple times
  1267 # 0: string
  1268 compiler.warn.proc.illegal.file.name=\
  1269     Cannot create file for illegal name ''{0}''.
  1271 # 0: string, 1: string
  1272 compiler.warn.proc.suspicious.class.name=\
  1273     Creating file for a type whose name ends in {1}: ''{0}''
  1275 # 0: name
  1276 compiler.warn.proc.file.create.last.round=\
  1277     File for type ''{0}'' created in the last round will not be subject to annotation processing.
  1279 # 0: string, 1: string
  1280 compiler.warn.proc.malformed.supported.string=\
  1281     Malformed string ''{0}'' for a supported annotation type returned by processor ''{1}''
  1283 # 0: set of string
  1284 compiler.warn.proc.annotations.without.processors=\
  1285     No processor claimed any of these annotations: {0}
  1287 # 0: source version, 1: string, 2: string
  1288 compiler.warn.proc.processor.incompatible.source.version=\
  1289     Supported source version ''{0}'' from annotation processor ''{1}'' less than -source ''{2}''
  1291 compiler.warn.proc.proc-only.requested.no.procs=\
  1292     Annotation processing without compilation requested but no processors were found.
  1294 compiler.warn.proc.use.implicit=\
  1295     Implicitly compiled files were not subject to annotation processing.\n\
  1296     Use -implicit to specify a policy for implicit compilation.
  1298 compiler.warn.proc.use.proc.or.implicit=\
  1299     Implicitly compiled files were not subject to annotation processing.\n\
  1300     Use -proc:none to disable annotation processing or -implicit to specify a policy for implicit compilation.
  1302 # Print a client-generated warning; assumed to be localized, no translation required
  1303 # 0: string
  1304 compiler.warn.proc.messager=\
  1305     {0}
  1307 # 0: set of name
  1308 compiler.warn.proc.unclosed.type.files=\
  1309     Unclosed files for the types ''{0}''; these types will not undergo annotation processing
  1311 # 0: string
  1312 compiler.warn.proc.unmatched.processor.options=\
  1313     The following options were not recognized by any processor: ''{0}''
  1315 compiler.warn.try.explicit.close.call=\
  1316     explicit call to close() on an auto-closeable resource
  1318 # 0: symbol
  1319 compiler.warn.try.resource.not.referenced=\
  1320     auto-closeable resource {0} is never referenced in body of corresponding try statement
  1322 # 0: type
  1323 compiler.warn.try.resource.throws.interrupted.exc=\
  1324     auto-closeable resource {0} has a member method close() that could throw InterruptedException
  1326 compiler.warn.unchecked.assign=\
  1327     unchecked assignment: {0} to {1}
  1329 # 0: symbol, 1: type
  1330 compiler.warn.unchecked.assign.to.var=\
  1331     unchecked assignment to variable {0} as member of raw type {1}
  1333 # 0: symbol, 1: type
  1334 compiler.warn.unchecked.call.mbr.of.raw.type=\
  1335     unchecked call to {0} as a member of the raw type {1}
  1337 compiler.warn.unchecked.cast.to.type=\
  1338     unchecked cast to type {0}
  1340 # 0: symbol kind, 1: name, 2: list of type, 3: list of type, 4: symbol kind, 5: symbol
  1341 compiler.warn.unchecked.meth.invocation.applied=\
  1342     unchecked method invocation: {0} {1} in {4} {5} is applied to given types\n\
  1343     required: {2}\n\
  1344     found: {3}
  1346 # 0: type
  1347 compiler.warn.unchecked.generic.array.creation=\
  1348     unchecked generic array creation for varargs parameter of type {0}
  1350 # 0: type
  1351 compiler.warn.unchecked.varargs.non.reifiable.type=\
  1352     Possible heap pollution from parameterized vararg type {0}
  1354 # 0: symbol
  1355 compiler.warn.varargs.unsafe.use.varargs.param=\
  1356     Varargs method could cause heap pollution from non-reifiable varargs parameter {0}
  1358 compiler.warn.missing.deprecated.annotation=\
  1359     deprecated item is not annotated with @Deprecated
  1361 compiler.warn.invalid.archive.file=\
  1362     Unexpected file on path: {0}
  1364 compiler.warn.unexpected.archive.file=\
  1365     Unexpected extension for archive file: {0}
  1367 compiler.warn.div.zero=\
  1368     division by zero
  1370 compiler.warn.empty.if=\
  1371     empty statement after if
  1373 compiler.warn.annotation.method.not.found=\
  1374     Cannot find annotation method ''{1}()'' in type ''{0}''
  1376 compiler.warn.annotation.method.not.found.reason=\
  1377     Cannot find annotation method ''{1}()'' in type ''{0}'': {2}
  1379 # 0: symbol, 1: name
  1380 compiler.warn.unknown.enum.constant=\
  1381     unknown enum constant {1}.{2}
  1383 # 0: symbol, 1: name, 2: message segment
  1384 compiler.warn.unknown.enum.constant.reason=\
  1385     unknown enum constant {1}.{2}\n\
  1386     reason: {3}
  1388 # 0: type, 1: type
  1389 compiler.warn.raw.class.use=\
  1390     found raw type: {0}\n\
  1391     missing type arguments for generic class {1}
  1393 # 0: unused, 1: unused
  1394 compiler.warn.diamond.redundant.args=\
  1395     redundant type arguments in new expression (use diamond operator instead).
  1397 # 0: type, 1: type
  1398 compiler.warn.diamond.redundant.args.1=\
  1399     redundant type arguments in new expression (use diamond operator instead).\n\
  1400     explicit: {0}\n\
  1401     inferred: {1}
  1403 # 0: symbol, 1: message segment
  1404 compiler.warn.varargs.redundant.trustme.anno=\
  1405     Redundant {0} annotation. {1}
  1407 #####
  1409 ## The following are tokens which are non-terminals in the language. They should
  1410 ## be named as JLS3 calls them when translated to the appropriate language.
  1411 compiler.misc.token.identifier=\
  1412     <identifier>
  1414 compiler.misc.token.character=\
  1415     <character>
  1417 compiler.misc.token.string=\
  1418     <string>
  1420 compiler.misc.token.integer=\
  1421     <integer>
  1423 compiler.misc.token.long-integer=\
  1424     <long integer>
  1426 compiler.misc.token.float=\
  1427     <float>
  1429 compiler.misc.token.double=\
  1430     <double>
  1432 compiler.misc.token.bad-symbol=\
  1433     <bad symbol>
  1435 compiler.misc.token.end-of-input=\
  1436     <end of input>
  1438 ## The argument to the following string will always be one of the following:
  1439 ## 1. one of the above non-terminals
  1440 ## 2. a keyword (JLS1.8)
  1441 ## 3. a boolean literal (JLS3.10.3)
  1442 ## 4. the null literal (JLS3.10.7)
  1443 ## 5. a Java separator (JLS3.11)
  1444 ## 6. an operator (JLS3.12)
  1445 ##
  1446 ## This is the only place these tokens will be used.
  1447 # 0: token
  1448 compiler.err.expected=\
  1449     {0} expected
  1451 # 0: token, 1: token
  1452 compiler.err.expected2=\
  1453     {0} or {1} expected
  1455 # 0: token, 1: token, 2: token
  1456 compiler.err.expected3=\
  1457     {0}, {1}, or {2} expected
  1459 compiler.err.premature.eof=\
  1460     reached end of file while parsing
  1462 ## The following are related in form, but do not easily fit the above paradigm.
  1463 compiler.err.dot.class.expected=\
  1464     ''.class'' expected
  1466 ## The argument to this string will always be either 'case' or 'default'.
  1467 # 0: token
  1468 compiler.err.orphaned=\
  1469     orphaned {0}
  1471 # 0: name
  1472 compiler.misc.anonymous.class=\
  1473     <anonymous {0}>
  1475 # 0: name, 1: type
  1476 compiler.misc.type.captureof=\
  1477     capture#{0} of {1}
  1479 compiler.misc.type.captureof.1=\
  1480     capture#{0}
  1482 compiler.misc.type.none=\
  1483     <none>
  1485 compiler.misc.unnamed.package=\
  1486     unnamed package
  1488 #####
  1490 # 0: symbol, 1: message segment
  1491 compiler.err.cant.access=\
  1492     cannot access {0}\n\
  1493     {1}
  1495 compiler.misc.bad.class.file.header=\
  1496     bad class file: {0}\n\
  1497     {1}\n\
  1498     Please remove or make sure it appears in the correct subdirectory of the classpath.
  1500 # 0: file name, 1: message segment
  1501 compiler.misc.bad.source.file.header=\
  1502     bad source file: {0}\n\
  1503     {1}\n\
  1504     Please remove or make sure it appears in the correct subdirectory of the sourcepath.
  1506 ## The following are all possible strings for the second argument ({1}) of the
  1507 ## above strings.
  1508 compiler.misc.bad.class.signature=\
  1509     bad class signature: {0}
  1511 #0: symbol, 1: symbol
  1512 compiler.misc.bad.enclosing.class=\
  1513     bad enclosing class for {0}: {1}
  1515 # 0: symbol
  1516 compiler.misc.bad.enclosing.method=\
  1517     bad enclosing method attribute for class {0}
  1519 compiler.misc.bad.runtime.invisible.param.annotations=\
  1520     bad RuntimeInvisibleParameterAnnotations attribute: {0}
  1522 compiler.misc.bad.const.pool.tag=\
  1523     bad constant pool tag: {0}
  1525 compiler.misc.bad.const.pool.tag.at=\
  1526     bad constant pool tag: {0} at {1}
  1528 compiler.misc.bad.signature=\
  1529     bad signature: {0}
  1531 compiler.misc.class.file.wrong.class=\
  1532     class file contains wrong class: {0}
  1534 compiler.misc.class.file.not.found=\
  1535     class file for {0} not found
  1537 # 0: name
  1538 compiler.misc.file.doesnt.contain.class=\
  1539     file does not contain class {0}
  1541 compiler.misc.file.does.not.contain.package=\
  1542     file does not contain package {0}
  1544 compiler.misc.illegal.start.of.class.file=\
  1545     illegal start of class file
  1547 compiler.misc.unable.to.access.file=\
  1548     unable to access file: {0}
  1550 compiler.misc.unicode.str.not.supported=\
  1551     unicode string in class file not supported
  1553 compiler.misc.undecl.type.var=\
  1554     undeclared type variable: {0}
  1556 compiler.misc.wrong.version=\
  1557     class file has wrong version {0}.{1}, should be {2}.{3}
  1559 #####
  1561 # 0: type, 1: type or symbol
  1562 compiler.err.not.within.bounds=\
  1563     type argument {0} is not within bounds of type-variable {1}
  1565 ## The following are all possible strings for the second argument ({1}) of the
  1566 ## above string.
  1568 ## none yet...
  1570 #####
  1572 # 0: message segment
  1573 compiler.err.prob.found.req=\
  1574     incompatible types: {0}
  1576 # 0: message segment, 1: type, 2: type
  1577 compiler.warn.prob.found.req=\
  1578     {0}\n\
  1579     required: {2}\n\
  1580     found:    {1}
  1582 # 0: type, 1: type
  1583 compiler.misc.inconvertible.types=\
  1584     {0} cannot be converted to {1}
  1586 # 0: type, 1: type
  1587 compiler.misc.possible.loss.of.precision=\
  1588     possible lossy conversion from {0} to {1}
  1590 compiler.misc.unchecked.assign=\
  1591     unchecked conversion
  1593 # compiler.misc.storecheck=\
  1594 #     assignment might cause later store checks to fail
  1595 # compiler.misc.unchecked=\
  1596 #     assigned array cannot dynamically check its stores
  1597 compiler.misc.unchecked.cast.to.type=\
  1598     unchecked cast
  1600 # compiler.err.star.expected=\
  1601 #     ''*'' expected
  1602 # compiler.err.no.elem.type=\
  1603 #     \[\*\] cannot have a type
  1605 # 0: type
  1606 compiler.misc.try.not.applicable.to.type=\
  1607     try-with-resources not applicable to variable type\n\
  1608     ({0})
  1610 #####
  1612 # 0: message segment or type, 1: message segment
  1613 compiler.err.type.found.req=\
  1614     unexpected type\n\
  1615     required: {1}\n\
  1616     found:    {0}
  1618 ## The following are all possible strings for the first argument ({0}) of the
  1619 ## above string.
  1620 compiler.misc.type.req.class=\
  1621     class
  1623 compiler.misc.type.req.class.array=\
  1624     class or array
  1626 compiler.misc.type.req.array.or.iterable=\
  1627     array or java.lang.Iterable
  1629 compiler.misc.type.req.ref=\
  1630     reference
  1632 compiler.misc.type.req.exact=\
  1633     class or interface without bounds
  1635 # 0: type
  1636 compiler.misc.type.parameter=\
  1637     type parameter {0}
  1639 #####
  1641 ## The following are all possible strings for the last argument of all those
  1642 ## diagnostics whose key ends in ".1"
  1644 # 0: type, 1: list of type
  1645 compiler.misc.no.unique.maximal.instance.exists=\
  1646     no unique maximal instance exists for type variable {0} with upper bounds {1}
  1648 compiler.misc.no.unique.minimal.instance.exists=\
  1649     no unique minimal instance exists for type variable {0} with lower bounds {1}
  1651 # 0: type, 1: list of type
  1652 compiler.misc.incompatible.upper.bounds=\
  1653     inference variable {0} has incompatible upper bounds {1}
  1655 # 0: list of type, 1: type, 2: type
  1656 compiler.misc.infer.no.conforming.instance.exists=\
  1657     no instance(s) of type variable(s) {0} exist so that {1} conforms to {2}
  1659 # 0: list of type, 1: message segment
  1660 compiler.misc.infer.no.conforming.assignment.exists=\
  1661     cannot infer type-variable(s) {0}\n\
  1662     (argument mismatch; {1})
  1664 # 0: list of type
  1665 compiler.misc.infer.arg.length.mismatch=\
  1666     cannot infer type-variable(s) {0}\n\
  1667     (actual and formal argument lists differ in length)
  1669 # 0: list of type, 1: message segment
  1670 compiler.misc.infer.varargs.argument.mismatch=\
  1671     cannot infer type-variable(s) {0}\n\
  1672     (varargs mismatch; {1})
  1674 # 0: type, 1: list of type
  1675 compiler.misc.inferred.do.not.conform.to.upper.bounds=\
  1676     inferred type does not conform to upper bound(s)\n\
  1677     inferred: {0}\n\
  1678     upper bound(s): {1}
  1680 # 0: type, 1: list of type
  1681 compiler.misc.inferred.do.not.conform.to.lower.bounds=\
  1682     inferred type does not conform to lower bound(s)\n\
  1683     inferred: {0}\n\
  1684     lower bound(s): {1}
  1686 # 0: type, 1: list of type
  1687 compiler.misc.inferred.do.not.conform.to.eq.bounds=\
  1688     inferred type does not conform to equality constraint(s)\n\
  1689     inferred: {0}\n\
  1690     equality constraints(s): {1}
  1692 # 0: symbol
  1693 compiler.misc.diamond=\
  1694     {0}<>
  1696 # 0: type
  1697 compiler.misc.diamond.non.generic=\
  1698     cannot use ''<>'' with non-generic class {0}
  1700 # 0: unused
  1701 compiler.misc.diamond.and.explicit.params=\
  1702     cannot use ''<>'' with explicit type parameters for constructor
  1704 # 0: type, 1: list of type
  1705 compiler.misc.explicit.param.do.not.conform.to.bounds=\
  1706     explicit type argument {0} does not conform to declared bound(s) {1}
  1708 compiler.misc.arg.length.mismatch=\
  1709     actual and formal argument lists differ in length
  1711 # 0: message segment
  1712 compiler.misc.no.conforming.assignment.exists=\
  1713     argument mismatch; {0}
  1715 # 0: message segment
  1716 compiler.misc.varargs.argument.mismatch=\
  1717     varargs mismatch; {0}
  1719 #####
  1721 ## The first argument ({0}) is a "kindname".
  1722 # 0: symbol kind, 1: symbol, 2: symbol
  1723 compiler.err.abstract.cant.be.accessed.directly=\
  1724     abstract {0} {1} in {2} cannot be accessed directly
  1726 ## The first argument ({0}) is a "kindname".
  1727 # 0: symbol kind, 1: symbol
  1728 compiler.err.non-static.cant.be.ref=\
  1729     non-static {0} {1} cannot be referenced from a static context
  1731 ## Both arguments ({0}, {1}) are "kindname"s.  {0} is a comma-separated list
  1732 ## of kindnames (the list should be identical to that provided in source.
  1733 compiler.err.unexpected.type=\
  1734     unexpected type\n\
  1735     required: {0}\n\
  1736     found:    {1}
  1738 ## The first argument {0} is a "kindname" (e.g. 'constructor', 'field', etc.)
  1739 ## The second argument {1} is the non-resolved symbol
  1740 ## The third argument {2} is a list of type parameters (non-empty if {1} is a method)
  1741 ## The fourth argument {3} is a list of argument types (non-empty if {1} is a method)
  1742 # 0: symbol kind, 1: name, 2: unused, 3: unused
  1743 compiler.err.cant.resolve=\
  1744     cannot find symbol\n\
  1745     symbol: {0} {1}
  1747 # 0: symbol kind, 1: name, 2: unused, 3: list of type
  1748 compiler.err.cant.resolve.args=\
  1749     cannot find symbol\n\
  1750     symbol: {0} {1}({3})
  1752 # 0: symbol kind, 1: name, 2: list of type, 3: list of type
  1753 compiler.err.cant.resolve.args.params=\
  1754     cannot find symbol\n\
  1755     symbol: {0} <{2}>{1}({3})
  1757 ## arguments from {0} to {3} have the same meaning as above
  1758 ## The fifth argument {4} is a location subdiagnostic (see below)
  1759 # 0: symbol kind, 1: name, 2: unused, 3: unused, 4: message segment
  1760 compiler.err.cant.resolve.location=\
  1761     cannot find symbol\n\
  1762     symbol:   {0} {1}\n\
  1763     location: {4}
  1765 # 0: symbol kind, 1: name, 2: unused, 3: list of type, 4: message segment
  1766 compiler.err.cant.resolve.location.args=\
  1767     cannot find symbol\n\
  1768     symbol:   {0} {1}({3})\n\
  1769     location: {4}
  1771 # 0: symbol kind, 1: name, 2: list of type, 3: list, 4: message segment
  1772 compiler.err.cant.resolve.location.args.params=\
  1773     cannot find symbol\n\
  1774     symbol:   {0} <{2}>{1}({3})\n\
  1775     location: {4}
  1777 ##a location subdiagnostic is composed as follows:
  1778 ## The first argument {0} is the location "kindname" (e.g. 'constructor', 'field', etc.)
  1779 ## The second argument {1} is the location name
  1780 ## The third argument {2} is the location type (only when {1} is a variable name)
  1782 # 0: symbol kind, 1: type or symbol, 2: unused
  1783 compiler.misc.location=\
  1784     {0} {1}
  1786 # 0: symbol kind, 1: symbol, 2: type
  1787 compiler.misc.location.1=\
  1788     {0} {1} of type {2}
  1790 ## The following are all possible string for "kindname".
  1791 ## They should be called whatever the JLS calls them after it been translated
  1792 ## to the appropriate language.
  1793 # compiler.misc.kindname.constructor=\
  1794 #     static member
  1795 compiler.misc.kindname.annotation=\
  1796     @interface
  1798 compiler.misc.kindname.constructor=\
  1799     constructor
  1801 compiler.misc.kindname.enum=\
  1802     enum
  1804 compiler.misc.kindname.interface=\
  1805     interface
  1807 compiler.misc.kindname.static=\
  1808     static
  1810 compiler.misc.kindname.type.variable=\
  1811     type variable
  1813 compiler.misc.kindname.type.variable.bound=\
  1814     bound of type variable
  1816 compiler.misc.kindname.variable=\
  1817     variable
  1819 compiler.misc.kindname.value=\
  1820     value
  1822 compiler.misc.kindname.method=\
  1823     method
  1825 compiler.misc.kindname.class=\
  1826     class
  1828 compiler.misc.kindname.package=\
  1829     package
  1831 compiler.misc.kindname.static.init=\
  1832     static initializer
  1834 compiler.misc.kindname.instance.init=\
  1835     instance initializer
  1837 #####
  1839 compiler.misc.no.args=\
  1840     no arguments
  1842 # 0: message segment
  1843 compiler.err.override.static=\
  1844     {0}\n\
  1845     overriding method is static
  1847 # 0: message segment, 1: set of modifier
  1848 compiler.err.override.meth=\
  1849     {0}\n\
  1850     overridden method is {1}
  1852 # 0: message segment, 1: type
  1853 compiler.err.override.meth.doesnt.throw=\
  1854     {0}\n\
  1855     overridden method does not throw {1}
  1857 # In the following string {1} is a space separated list of Java Keywords, as
  1858 # they would have been declared in the source code
  1859 # 0: message segment, 1: set of modifier
  1860 compiler.err.override.weaker.access=\
  1861     {0}\n\
  1862     attempting to assign weaker access privileges; was {1}
  1864 # 0: message segment, 1: type, 2: type
  1865 compiler.err.override.incompatible.ret=\
  1866     {0}\n\
  1867     return type {1} is not compatible with {2}
  1869 # 0: message segment, 1: type, 2: type
  1870 compiler.warn.override.unchecked.ret=\
  1871     {0}\n\
  1872     return type requires unchecked conversion from {1} to {2}
  1874 # 0: message segment, 1: type
  1875 compiler.warn.override.unchecked.thrown=\
  1876     {0}\n\
  1877     overridden method does not throw {1}
  1879 ## The following are all possible strings for the first argument ({0}) of the
  1880 ## above strings.
  1881 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
  1882 compiler.misc.cant.override=\
  1883     {0} in {1} cannot override {2} in {3}
  1885 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
  1886 compiler.misc.cant.implement=\
  1887     {0} in {1} cannot implement {2} in {3}
  1889 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
  1890 compiler.misc.clashes.with=\
  1891     {0} in {1} clashes with {2} in {3}
  1893 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
  1894 compiler.misc.unchecked.override=\
  1895     {0} in {1} overrides {2} in {3}
  1897 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
  1898 compiler.misc.unchecked.implement=\
  1899     {0} in {1} implements {2} in {3}
  1901 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
  1902 compiler.misc.unchecked.clash.with=\
  1903     {0} in {1} overrides {2} in {3}
  1905 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
  1906 compiler.misc.varargs.override=\
  1907     {0} in {1} overrides {2} in {3}
  1909 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
  1910 compiler.misc.varargs.implement=\
  1911     {0} in {1} implements {2} in {3}
  1913 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
  1914 compiler.misc.varargs.clash.with=\
  1915     {0} in {1} overrides {2} in {3}
  1917 # 0: unused
  1918 compiler.misc.diamond.and.anon.class=\
  1919     cannot use ''<>'' with anonymous inner classes
  1921 # 0: symbol kind, 1: symbol, 2: symbol, 3: message segment
  1922 compiler.misc.inapplicable.method=\
  1923     {0} {1}.{2} is not applicable\n\
  1924     ({3})
  1926 ########################################
  1927 # Diagnostics for language feature changes
  1928 ########################################
  1929 # 0: string
  1930 compiler.err.unsupported.fp.lit=\
  1931     hexadecimal floating point literals are not supported in -source {0}\n\
  1932     (use -source 5 or higher to enable hexadecimal floating point literals)
  1934 # 0: string
  1935 compiler.err.unsupported.binary.lit=\
  1936     binary literals are not supported in -source {0}\n\
  1937     (use -source 7 or higher to enable binary literals)
  1939 # 0: string
  1940 compiler.err.unsupported.underscore.lit=\
  1941     underscores in literals are not supported in -source {0}\n\
  1942     (use -source 7 or higher to enable underscores in literals)
  1944 # 0: string
  1945 compiler.err.try.with.resources.not.supported.in.source=\
  1946     try-with-resources is not supported in -source {0}\n\
  1947     (use -source 7 or higher to enable try-with-resources)
  1949 compiler.warn.enum.as.identifier=\
  1950     as of release 5, ''enum'' is a keyword, and may not be used as an identifier\n\
  1951     (use -source 5 or higher to use ''enum'' as a keyword)
  1953 compiler.warn.assert.as.identifier=\
  1954     as of release 1.4, ''assert'' is a keyword, and may not be used as an identifier\n\
  1955     (use -source 1.4 or higher to use ''assert'' as a keyword)
  1957 compiler.err.enum.as.identifier=\
  1958     as of release 5, ''enum'' is a keyword, and may not be used as an identifier\n\
  1959     (use -source 1.4 or lower to use ''enum'' as an identifier)
  1961 compiler.err.assert.as.identifier=\
  1962     as of release 1.4, ''assert'' is a keyword, and may not be used as an identifier\n\
  1963     (use -source 1.3 or lower to use ''assert'' as an identifier)
  1965 # 0: string
  1966 compiler.err.generics.not.supported.in.source=\
  1967     generics are not supported in -source {0}\n\
  1968     (use -source 5 or higher to enable generics)
  1970 # 0: string
  1971 compiler.err.varargs.not.supported.in.source=\
  1972     variable-arity methods are not supported in -source {0}\n\
  1973     (use -source 5 or higher to enable variable-arity methods)
  1975 # 0: string
  1976 compiler.err.annotations.not.supported.in.source=\
  1977     annotations are not supported in -source {0}\n\
  1978     (use -source 5 or higher to enable annotations)
  1980 #308 compiler.err.type.annotations.not.supported.in.source=\
  1981 #308     type annotations are not supported in -source {0}\n\
  1982 #308 (use -source 7 or higher to enable type annotations)
  1984 # 0: string
  1985 compiler.err.foreach.not.supported.in.source=\
  1986     for-each loops are not supported in -source {0}\n\
  1987     (use -source 5 or higher to enable for-each loops)
  1989 # 0: string
  1990 compiler.err.static.import.not.supported.in.source=\
  1991     static import declarations are not supported in -source {0}\n\
  1992     (use -source 5 or higher to enable static import declarations)
  1994 # 0: string
  1995 compiler.err.enums.not.supported.in.source=\
  1996     enums are not supported in -source {0}\n\
  1997     (use -source 5 or higher to enable enums)
  1999 # 0: string
  2000 compiler.err.diamond.not.supported.in.source=\
  2001     diamond operator is not supported in -source {0}\n\
  2002     (use -source 7 or higher to enable diamond operator)
  2004 # 0: string
  2005 compiler.err.multicatch.not.supported.in.source=\
  2006     multi-catch statement is not supported in -source {0}\n\
  2007     (use -source 7 or higher to enable multi-catch statement)
  2009 # 0: string
  2010 compiler.err.string.switch.not.supported.in.source=\
  2011     strings in switch are not supported in -source {0}\n\
  2012     (use -source 7 or higher to enable strings in switch)
  2014 # 0: string
  2015 compiler.err.lambda.not.supported.in.source=\
  2016     lambda expressions are not supported in -source {0}\n\
  2017     (use -source 8 or higher to enable lambda expressions)
  2019 # 0: string
  2020 compiler.err.method.references.not.supported.in.source=\
  2021     method references are not supported in -source {0}\n\
  2022     (use -source 8 or higher to enable method references)
  2024 ########################################
  2025 # Diagnostics for verbose resolution
  2026 # used by Resolve (debug only)
  2027 ########################################
  2029 # 0: number, 1: symbol, 2: unused
  2030 compiler.misc.applicable.method.found=\
  2031     #{0} applicable method found: {1}
  2033 # 0: number, 1: symbol, 2: message segment
  2034 compiler.misc.applicable.method.found.1=\
  2035     #{0} applicable method found: {1}\n\
  2036     ({2})
  2038 # 0: number, 1: symbol, 2: message segment
  2039 compiler.misc.not.applicable.method.found=\
  2040     #{0} not applicable method found: {1}\n\
  2041     ({2})
  2043 # 0: type
  2044 compiler.misc.partial.inst.sig=\
  2045     partially instantiated to: {0}
  2047 # 0: name, 1: symbol, 2: number, 3: MethodResolutionPhase, 4: list of type or message segment, 5: list of type or message segment
  2048 compiler.note.verbose.resolve.multi=\
  2049     resolving method {0} in type {1} to candidate {2}\n\
  2050     phase: {3}\n\
  2051     with actuals: {4}\n\
  2052     with type-args: {5}\n\
  2053     candidates:
  2055 # 0: name, 1: symbol, 2: unused, 3: MethodResolutionPhase, 4: list of type or message segment, 5: list of type or message segment
  2056 compiler.note.verbose.resolve.multi.1=\
  2057     erroneous resolution for method {0} in type {1}\n\
  2058     phase: {3}\n\
  2059     with actuals: {4}\n\
  2060     with type-args: {5}\n\
  2061     candidates:
  2063 # 0: symbol, 1: type, 2: type
  2064 compiler.note.deferred.method.inst=\
  2065     Deferred instantiation of method {0}\n\
  2066     instantiated signature: {1}\n\
  2067     target-type: {2}
  2069 ########################################
  2070 # Diagnostics for where clause implementation
  2071 # used by the RichDiagnosticFormatter.
  2072 ########################################
  2074 compiler.misc.type.null=\
  2075     <null>
  2077 # X#n (where n is an int id) is disambiguated tvar name
  2078 # 0: name, 1: number
  2079 compiler.misc.type.var=\
  2080     {0}#{1}
  2082 # CAP#n (where n is an int id) is an abbreviation for 'captured type'
  2083 # 0: number
  2084 compiler.misc.captured.type=\
  2085     CAP#{0}
  2087 # <INT#n> (where n is an int id) is an abbreviation for 'intersection type'
  2088 # 0: number
  2089 compiler.misc.intersection.type=\
  2090     INT#{0}
  2092 # where clause for captured type: contains upper ('extends {1}') and lower
  2093 # ('super {2}') bound along with the wildcard that generated this captured type ({3})
  2094 # 0: type, 1: type, 2: type, 3: type
  2095 compiler.misc.where.captured=\
  2096     {0} extends {1} super: {2} from capture of {3}
  2098 # compact where clause for captured type: contains upper ('extends {1}') along
  2099 # with the wildcard that generated this captured type ({3})
  2100 # 0: type, 1: type, 2: unused, 3: type
  2101 compiler.misc.where.captured.1=\
  2102     {0} extends {1} from capture of {3}
  2104 # where clause for type variable: contains upper bound(s) ('extends {1}') along with
  2105 # the kindname ({2}) and location ({3}) in which the typevar has been declared
  2106 # 0: type, 1: list of type, 2: symbol kind, 3: symbol
  2107 compiler.misc.where.typevar=\
  2108     {0} extends {1} declared in {2} {3}
  2110 # compact where clause for type variable: contains the kindname ({2}) and location ({3})
  2111 # in which the typevar has been declared
  2112 # 0: type, 1: list of type, 2: symbol kind, 3: symbol
  2113 compiler.misc.where.typevar.1=\
  2114     {0} declared in {2} {3}
  2116 # where clause for fresh type variable: contains upper bound(s) ('extends {1}').
  2117 # Since a fresh type-variable is synthetic - there's no location/kindname here.
  2118 # 0: type, 1: list of type
  2119 compiler.misc.where.fresh.typevar=\
  2120     {0} extends {1}
  2122 # where clause for type variable: contains all the upper bound(s) ('extends {1}')
  2123 # of this intersection type
  2124 # 0: type, 1: list of type
  2125 compiler.misc.where.intersection=\
  2126     {0} extends {1}
  2128 ### Where clause headers ###
  2129 compiler.misc.where.description.captured=\
  2130     where {0} is a fresh type-variable:
  2132 # 0: set of type
  2133 compiler.misc.where.description.typevar=\
  2134     where {0} is a type-variable:
  2136 # 0: set of type
  2137 compiler.misc.where.description.intersection=\
  2138     where {0} is an intersection type:
  2140 # 0: set of type
  2141 compiler.misc.where.description.captured.1=\
  2142     where {0} are fresh type-variables:
  2144 # 0: set of type
  2145 compiler.misc.where.description.typevar.1=\
  2146     where {0} are type-variables:
  2148 compiler.misc.where.description.intersection.1=\
  2149     where {0} are intersection types:

mercurial