4298 found: {1}
4299
4300 # 0: kind name, 1: symbol
4301 # lint: preview
4302 # flags: aggregate, mandatory, default-enabled
4303 compiler.warn.declared.using.preview=\
4304 {0} {1} is declared using a preview feature, which may be removed in a future release.
4305
4306 # lint: identity
4307 compiler.warn.attempt.to.synchronize.on.instance.of.value.based.class=\
4308 attempt to synchronize on an instance of a value-based class
4309
4310 # lint: identity
4311 compiler.warn.attempt.to.use.value.based.where.identity.expected=\
4312 use of a value-based class with an operation that expects reliable identity
4313
4314 # 0: type
4315 compiler.err.enclosing.class.type.non.denotable=\
4316 enclosing class type: {0}\n\
4317 is non-denotable, try casting to a denotable type
|
4298 found: {1}
4299
4300 # 0: kind name, 1: symbol
4301 # lint: preview
4302 # flags: aggregate, mandatory, default-enabled
4303 compiler.warn.declared.using.preview=\
4304 {0} {1} is declared using a preview feature, which may be removed in a future release.
4305
4306 # lint: identity
4307 compiler.warn.attempt.to.synchronize.on.instance.of.value.based.class=\
4308 attempt to synchronize on an instance of a value-based class
4309
4310 # lint: identity
4311 compiler.warn.attempt.to.use.value.based.where.identity.expected=\
4312 use of a value-based class with an operation that expects reliable identity
4313
4314 # 0: type
4315 compiler.err.enclosing.class.type.non.denotable=\
4316 enclosing class type: {0}\n\
4317 is non-denotable, try casting to a denotable type
4318
4319 ########################################
4320 # Diagnostics for code reflection
4321 ########################################
4322
4323 # 0: symbol
4324 compiler.warn.reflectable.method.inner.class=\
4325 unsupported reflectable method in inner class {0}
4326
4327 # 0: symbol
4328 compiler.warn.reflectable.lambda.inner.class=\
4329 unsupported reflectable lambda in inner class {0}
4330
4331 # 0: symbol
4332 compiler.warn.reflectable.mref.inner.class=\
4333 unsupported reflectable method reference in inner class {0}
4334
4335 compiler.misc.feature.reflect.methods=\
4336 code reflection
4337
4338 # 0: symbol, 1: symbol, 2: string
4339 compiler.note.reflectable.method.ir.dump=\
4340 reflectable method found {0}.{1}\n\
4341 {2}
4342
4343 # 0: string
4344 compiler.note.reflectable.lambda.ir.dump=\
4345 reflectable lambda found\n\
4346 {0}
4347
4348 # 0: string
4349 compiler.note.reflectable.mref.ir.dump=\
4350 reflectable method reference found\n\
4351 {0}
|