(ExecutionContext context, boolean shouldThrow)
| 450 | } |
| 451 | |
| 452 | protected boolean reject(ExecutionContext context, boolean shouldThrow) { |
| 453 | if (shouldThrow) { |
| 454 | throw new ThrowException(context, context.createTypeError("unable to perform operation")); |
| 455 | } |
| 456 | return false; |
| 457 | } |
| 458 | |
| 459 | @Override |
| 460 | public NameEnumerator getOwnPropertyNames() { |
no test coverage detected