4339 found: {1}
4340
4341 # 0: kind name, 1: symbol
4342 # lint: preview
4343 # flags: aggregate, mandatory, default-enabled
4344 compiler.warn.declared.using.preview=\
4345 {0} {1} is declared using a preview feature, which may be removed in a future release.
4346
4347 # lint: identity
4348 compiler.warn.attempt.to.synchronize.on.instance.of.value.based.class=\
4349 attempt to synchronize on an instance of a value-based class
4350
4351 # lint: identity
4352 compiler.warn.attempt.to.use.value.based.where.identity.expected=\
4353 use of a value-based class with an operation that expects reliable identity
4354
4355 # 0: type
4356 compiler.err.enclosing.class.type.non.denotable=\
4357 enclosing class type: {0}\n\
4358 is non-denotable, try casting to a denotable type
|
4339 found: {1}
4340
4341 # 0: kind name, 1: symbol
4342 # lint: preview
4343 # flags: aggregate, mandatory, default-enabled
4344 compiler.warn.declared.using.preview=\
4345 {0} {1} is declared using a preview feature, which may be removed in a future release.
4346
4347 # lint: identity
4348 compiler.warn.attempt.to.synchronize.on.instance.of.value.based.class=\
4349 attempt to synchronize on an instance of a value-based class
4350
4351 # lint: identity
4352 compiler.warn.attempt.to.use.value.based.where.identity.expected=\
4353 use of a value-based class with an operation that expects reliable identity
4354
4355 # 0: type
4356 compiler.err.enclosing.class.type.non.denotable=\
4357 enclosing class type: {0}\n\
4358 is non-denotable, try casting to a denotable type
4359
4360 ########################################
4361 # Diagnostics for code reflection
4362 ########################################
4363
4364 # 0: symbol
4365 compiler.warn.reflectable.method.inner.class=\
4366 unsupported reflectable method in inner class {0}
4367
4368 # 0: symbol
4369 compiler.warn.reflectable.lambda.inner.class=\
4370 unsupported reflectable lambda in inner class {0}
4371
4372 # 0: symbol
4373 compiler.warn.reflectable.mref.inner.class=\
4374 unsupported reflectable method reference in inner class {0}
4375
4376 compiler.misc.feature.reflect.methods=\
4377 code reflection
4378
4379 # 0: symbol, 1: symbol, 2: string
4380 compiler.note.reflectable.method.ir.dump=\
4381 reflectable method found {0}.{1}\n\
4382 {2}
4383
4384 # 0: string
4385 compiler.note.reflectable.lambda.ir.dump=\
4386 reflectable lambda found\n\
4387 {0}
4388
4389 # 0: string
4390 compiler.note.reflectable.mref.ir.dump=\
4391 reflectable method reference found\n\
4392 {0}
|