summaryrefslogtreecommitdiff
path: root/src/spread/sngl-err-obj-getter-throws.case
diff options
context:
space:
mode:
Diffstat (limited to 'src/spread/sngl-err-obj-getter-throws.case')
-rw-r--r--src/spread/sngl-err-obj-getter-throws.case24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/spread/sngl-err-obj-getter-throws.case b/src/spread/sngl-err-obj-getter-throws.case
deleted file mode 100644
index 98b58892b..000000000
--- a/src/spread/sngl-err-obj-getter-throws.case
+++ /dev/null
@@ -1,24 +0,0 @@
-// Copyright (C) 2017 Caio Lima. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-/*---
-desc: Object Spread operator results in error when there is an getter that throws an exception
-template: error
-esid: pending
-info: |
- Pending Runtime Semantics: PropertyDefinitionEvaluation
-
- PropertyDefinition:...AssignmentExpression
-
- 1. Let exprValue be the result of evaluating AssignmentExpression.
- 2. Let fromValue be GetValue(exprValue).
- 3. ReturnIfAbrupt(fromValue).
- 4. Let excludedNames be a new empty List.
- 5. Return CopyDataProperties(object, fromValue, excludedNames).
-
-features: [object-spread]
----*/
-
-//- error
-Test262Error
-//- args
-{...{ get foo() { throw new Test262Error(); } }}