1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 14:47:44 +00:00

LibJS: Update spec numbers for the Well-Formed Unicode Strings proposal

This proposal has been merged into the main ECMA-262 spec. See:
d95f42d
This commit is contained in:
Timothy Flynn 2023-05-25 11:00:43 -04:00 committed by Andreas Kling
parent 5d3b7a5ecc
commit d31b780760
2 changed files with 30 additions and 30 deletions

View file

@ -1229,7 +1229,7 @@ ThrowCompletionOr<CanonicalIndex> canonical_numeric_index_string(VM& vm, Propert
return CanonicalIndex(CanonicalIndex::Type::Undefined, 0);
}
// 22.1.3.18.1 GetSubstitution ( matched, str, position, captures, namedCaptures, replacementTemplate ), https://tc39.es/ecma262/#sec-getsubstitution
// 22.1.3.19.1 GetSubstitution ( matched, str, position, captures, namedCaptures, replacementTemplate ), https://tc39.es/ecma262/#sec-getsubstitution
ThrowCompletionOr<String> get_substitution(VM& vm, Utf16View const& matched, Utf16View const& str, size_t position, Span<Value> captures, Value named_captures, Value replacement_template)
{
auto replace_string = TRY(replacement_template.to_utf16_string(vm));