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.err.reflectable.method.inner.class=\
4366 unsupported reflectable method in inner class {0}
4367
4368 # 0: symbol
4369 compiler.err.reflectable.lambda.inner.class=\
4370 unsupported reflectable lambda in inner class {0}
4371
4372 # 0: symbol
4373 compiler.err.reflectable.mref.inner.class=\
4374 unsupported reflectable method reference in inner class {0}
4375
4376 # 0: symbol
4377 compiler.warn.reflectable.method.inner.class=\
4378 unsupported reflectable method in inner class {0}
4379
4380 # 0: symbol
4381 compiler.warn.reflectable.lambda.inner.class=\
4382 unsupported reflectable lambda in inner class {0}
4383
4384 # 0: symbol
4385 compiler.warn.reflectable.mref.inner.class=\
4386 unsupported reflectable method reference in inner class {0}
4387
4388 # 0: symbol, 1: string
4389 compiler.warn.reflectable.method.unsupported=\
4390 unsupported reflectable method in class {0}\n\
4391 {1}
4392
4393 # 0: symbol, 1: string
4394 compiler.warn.reflectable.lambda.unsupported=\
4395 unsupported reflectable lambda in class {0}\n\
4396 {1}
4397
4398 compiler.misc.feature.reflect.methods=\
4399 code reflection
4400
4401 # 0: symbol, 1: symbol, 2: string
4402 compiler.note.reflectable.method.ir.dump=\
4403 reflectable method found {0}.{1}\n\
4404 {2}
4405
4406 # 0: string
4407 compiler.note.reflectable.lambda.ir.dump=\
4408 reflectable lambda found\n\
4409 {0}
4410
4411 # 0: string
4412 compiler.note.reflectable.mref.ir.dump=\
4413 reflectable method reference found\n\
4414 {0}
|