From 4341537ecd7d31a299f20e9c1f9ba64459fff38c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Bargull?= Date: Fri, 4 Dec 2015 14:31:01 +0100 Subject: [PATCH] Add 'class' features tag --- .../Promise/prototype/then/capability-executor-called-twice.js | 1 + .../Promise/prototype/then/capability-executor-not-callable.js | 1 + .../Promise/prototype/then/deferred-is-resolved-value.js | 1 + 3 files changed, 3 insertions(+) diff --git a/test/built-ins/Promise/prototype/then/capability-executor-called-twice.js b/test/built-ins/Promise/prototype/then/capability-executor-called-twice.js index 63368d6a13..bfd31f8da0 100755 --- a/test/built-ins/Promise/prototype/then/capability-executor-called-twice.js +++ b/test/built-ins/Promise/prototype/then/capability-executor-called-twice.js @@ -20,6 +20,7 @@ info: > 5. Set promiseCapability.[[Resolve]] to resolve. 6. Set promiseCapability.[[Reject]] to reject. ... +features: [class] ---*/ var constructorFunction; diff --git a/test/built-ins/Promise/prototype/then/capability-executor-not-callable.js b/test/built-ins/Promise/prototype/then/capability-executor-not-callable.js index be23e05d3c..ba1e36367d 100755 --- a/test/built-ins/Promise/prototype/then/capability-executor-not-callable.js +++ b/test/built-ins/Promise/prototype/then/capability-executor-not-callable.js @@ -22,6 +22,7 @@ info: > 8. If IsCallable(promiseCapability.[[Resolve]]) is false, throw a TypeError exception. 9. If IsCallable(promiseCapability.[[Reject]]) is false, throw a TypeError exception. ... +features: [class] ---*/ var constructorFunction; diff --git a/test/built-ins/Promise/prototype/then/deferred-is-resolved-value.js b/test/built-ins/Promise/prototype/then/deferred-is-resolved-value.js index 442de0de5c..62063fde45 100755 --- a/test/built-ins/Promise/prototype/then/deferred-is-resolved-value.js +++ b/test/built-ins/Promise/prototype/then/deferred-is-resolved-value.js @@ -33,6 +33,7 @@ info: > ... 8. Let status be Call(promiseCapability.[[Resolve]], undefined, «handlerResult.[[value]]»). 9. NextJob Completion(status). +features: [class] ---*/ var createBadPromise = false;