From 0baddda4723cecbc873ef714c5b6daaf42cc5dad Mon Sep 17 00:00:00 2001 From: wangben Date: Thu, 19 May 2022 14:58:38 +0800 Subject: [PATCH] =?UTF-8?q?Add=20symbol.matchall=E3=80=81regexp.matchall?= =?UTF-8?q?=E3=80=81regexpIterator=20interface=20case?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: wangben --- test262/es2015_tests.txt | 45 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/test262/es2015_tests.txt b/test262/es2015_tests.txt index 69c02f452c..cff56781d4 100644 --- a/test262/es2015_tests.txt +++ b/test262/es2015_tests.txt @@ -6658,3 +6658,48 @@ built-ins/Object/fromEntries/supports-symbols.js built-ins/Object/fromEntries/string-entry-string-object-succeeds.js built-ins/Object/fromEntries/uses-define-semantics.js built-ins/Object/fromEntries/uses-keys-not-iterator.js +built-ins/RegExpStringIteratorPrototype/next/custom-regexpexec-get-throws.js +built-ins/RegExpStringIteratorPrototype/next/custom-regexpexec-match-get-0-throws.js +built-ins/RegExpStringIteratorPrototype/next/custom-regexpexec-match-get-0-tostring.js +built-ins/RegExpStringIteratorPrototype/ancestry.js +built-ins/RegExpStringIteratorPrototype/Symbol.toStringTag.js +built-ins/RegExpStringIteratorPrototype/next/custom-regexpexec-match-get-0-tostring-throws.js +built-ins/RegExpStringIteratorPrototype/next/custom-regexpexec-call-throws.js +built-ins/RegExpStringIteratorPrototype/next/custom-regexpexec-not-callable.js +built-ins/RegExpStringIteratorPrototype/next/next-iteration-global.js +built-ins/RegExpStringIteratorPrototype/next/length.js +built-ins/RegExpStringIteratorPrototype/next/next-missing-internal-slots.js +built-ins/RegExpStringIteratorPrototype/next/name.js +built-ins/RegExpStringIteratorPrototype/next/regexp-tolength-lastindex-throws.js +built-ins/RegExpStringIteratorPrototype/next/next-iteration.js +built-ins/RegExpStringIteratorPrototype/next/prop-desc.js +built-ins/RegExpStringIteratorPrototype/next/custom-regexpexec.js +built-ins/RegExpStringIteratorPrototype/next/this-is-not-object-throws.js +built-ins/RegExp/prototype/Symbol.matchAll/regexpcreate-this-throws.js +built-ins/RegExp/prototype/Symbol.matchAll/isregexp-this-throws.js +built-ins/RegExp/prototype/Symbol.matchAll/isregexp-called-once.js +built-ins/RegExp/prototype/Symbol.matchAll/species-constructor-get-constructor-throws.js +built-ins/RegExp/prototype/Symbol.matchAll/name.js +built-ins/RegExp/prototype/Symbol.matchAll/length.js +built-ins/RegExp/prototype/Symbol.matchAll/not-a-constructor.js +built-ins/RegExp/prototype/Symbol.matchAll/prop-desc.js +built-ins/RegExp/prototype/Symbol.matchAll/species-constructor-is-not-object-throws.js +built-ins/RegExp/prototype/Symbol.matchAll/species-constructor-species-is-null-or-undefined.js +built-ins/RegExp/prototype/Symbol.matchAll/species-constructor-species-is-not-constructor.js +built-ins/RegExp/prototype/Symbol.matchAll/species-constructor-get-species-throws.js +built-ins/RegExp/prototype/Symbol.matchAll/species-constructor-is-undefined.js +built-ins/RegExp/prototype/Symbol.matchAll/species-regexp-get-global-throws.js +built-ins/RegExp/prototype/Symbol.matchAll/species-constructor-species-throws.js +built-ins/RegExp/prototype/Symbol.matchAll/species-constructor.js +built-ins/RegExp/prototype/Symbol.matchAll/this-not-object-throws.js +built-ins/RegExp/prototype/Symbol.matchAll/string-tostring.js +built-ins/RegExp/prototype/Symbol.matchAll/this-get-flags-throws.js +built-ins/RegExp/prototype/Symbol.matchAll/species-regexp-get-unicode-throws.js +built-ins/RegExp/prototype/Symbol.matchAll/string-tostring-throws.js +built-ins/RegExp/prototype/Symbol.matchAll/this-lastindex-cached.js +built-ins/RegExp/prototype/Symbol.matchAll/this-get-flags.js +built-ins/RegExp/prototype/Symbol.matchAll/this-tolength-lastindex-throws.js +built-ins/RegExp/prototype/Symbol.matchAll/this-tostring-flags-throws.js +built-ins/RegExp/prototype/Symbol.matchAll/this-tostring-flags.js +built-ins/Symbol/matchAll/cross-realm.js +built-ins/Symbol/matchAll/prop-desc.js \ No newline at end of file -- Gitee