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.err.reflectable.method.inner.class=\
4325 unsupported reflectable method in inner class {0}
4326
4327 # 0: symbol
4328 compiler.err.reflectable.lambda.inner.class=\
4329 unsupported reflectable lambda in inner class {0}
4330
4331 # 0: symbol
4332 compiler.err.reflectable.mref.inner.class=\
4333 unsupported reflectable method reference in inner class {0}
4334
4335 # 0: symbol
4336 compiler.warn.reflectable.method.inner.class=\
4337 unsupported reflectable method in inner class {0}
4338
4339 # 0: symbol
4340 compiler.warn.reflectable.lambda.inner.class=\
4341 unsupported reflectable lambda in inner class {0}
4342
4343 # 0: symbol
4344 compiler.warn.reflectable.mref.inner.class=\
4345 unsupported reflectable method reference in inner class {0}
4346
4347 # 0: symbol, 1: string
4348 compiler.warn.reflectable.method.unsupported=\
4349 unsupported reflectable method in class {0}\n\
4350 {1}
4351
4352 # 0: symbol, 1: string
4353 compiler.warn.reflectable.lambda.unsupported=\
4354 unsupported reflectable lambda in class {0}\n\
4355 {1}
4356
4357 compiler.misc.feature.reflect.methods=\
4358 code reflection
4359
4360 # 0: symbol, 1: symbol, 2: string
4361 compiler.note.reflectable.method.ir.dump=\
4362 reflectable method found {0}.{1}\n\
4363 {2}
4364
4365 # 0: string
4366 compiler.note.reflectable.lambda.ir.dump=\
4367 reflectable lambda found\n\
4368 {0}
4369
4370 # 0: string
4371 compiler.note.reflectable.mref.ir.dump=\
4372 reflectable method reference found\n\
4373 {0}
|