mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 14:54:52 +02:00
8330178: Clean up non-standard use of /** comments in java.base
Reviewed-by: darcy, iris, dfuchs, aivanov, naoto
This commit is contained in:
parent
88a5dcead2
commit
9cc163a999
23 changed files with 78 additions and 84 deletions
|
@ -571,7 +571,7 @@ class LambdaForm {
|
|||
return true;
|
||||
}
|
||||
|
||||
/** Invoke this form on the given arguments. */
|
||||
// /** Invoke this form on the given arguments. */
|
||||
// final Object invoke(Object... args) throws Throwable {
|
||||
// // NYI: fit this into the fast path?
|
||||
// return interpretWithArguments(args);
|
||||
|
@ -923,9 +923,9 @@ class LambdaForm {
|
|||
return invocationCounter == -1;
|
||||
}
|
||||
|
||||
/** Interpretively invoke this form on the given arguments. */
|
||||
@Hidden
|
||||
@DontInline
|
||||
/** Interpretively invoke this form on the given arguments. */
|
||||
Object interpretWithArguments(Object... argumentValues) throws Throwable {
|
||||
if (TRACE_INTERPRETER)
|
||||
return interpretWithArgumentsTracing(argumentValues);
|
||||
|
@ -940,9 +940,9 @@ class LambdaForm {
|
|||
return rv;
|
||||
}
|
||||
|
||||
/** Evaluate a single Name within this form, applying its function to its arguments. */
|
||||
@Hidden
|
||||
@DontInline
|
||||
/** Evaluate a single Name within this form, applying its function to its arguments. */
|
||||
Object interpretName(Name name, Object[] values) throws Throwable {
|
||||
if (TRACE_INTERPRETER)
|
||||
traceInterpreter("| interpretName", name.debugString(), (Object[]) null);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue