equal
deleted
inserted
replaced
28 /** |
28 /** |
29 * A {@code ConstantCallSite} is a {@link CallSite} whose target is permanent, and can never be changed. |
29 * A {@code ConstantCallSite} is a {@link CallSite} whose target is permanent, and can never be changed. |
30 * An {@code invokedynamic} instruction linked to a {@code ConstantCallSite} is permanently |
30 * An {@code invokedynamic} instruction linked to a {@code ConstantCallSite} is permanently |
31 * bound to the call site's target. |
31 * bound to the call site's target. |
32 * @author John Rose, JSR 292 EG |
32 * @author John Rose, JSR 292 EG |
|
33 * @since 1.7 |
33 */ |
34 */ |
34 public class ConstantCallSite extends CallSite { |
35 public class ConstantCallSite extends CallSite { |
35 private final boolean isFrozen; |
36 private final boolean isFrozen; |
36 |
37 |
37 /** |
38 /** |