From 26a029d407be480d791972afb5975cf62c9360a6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 02:47:55 +0200 Subject: Adding upstream version 124.0.1. Signed-off-by: Daniel Baumann --- .../RegExp/prototype/source/value-slash.js | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 js/src/tests/test262/built-ins/RegExp/prototype/source/value-slash.js (limited to 'js/src/tests/test262/built-ins/RegExp/prototype/source/value-slash.js') diff --git a/js/src/tests/test262/built-ins/RegExp/prototype/source/value-slash.js b/js/src/tests/test262/built-ins/RegExp/prototype/source/value-slash.js new file mode 100644 index 0000000000..e0a6f23492 --- /dev/null +++ b/js/src/tests/test262/built-ins/RegExp/prototype/source/value-slash.js @@ -0,0 +1,28 @@ +// Copyright (C) 2016 Aleksey Shvayka. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/*--- +esid: sec-get-regexp.prototype.source +description: Return value can be used to create an equivalent RegExp +info: | + [...] + 5. Let src be R.[[OriginalSource]]. + 6. Let flags be R.[[OriginalFlags]]. + 7. Return EscapeRegExpPattern(src, flags). + + 21.2.3.2.4 Runtime Semantics: EscapeRegExpPattern + + [...] The code points / or any LineTerminator occurring in the pattern + shall be escaped in S as necessary to ensure that the String value + formed by concatenating the Strings "/", S, "/", and F can be parsed + (in an appropriate lexical context) as a RegularExpressionLiteral that + behaves identically to the constructed regular expression. +---*/ + +var re = eval('/' + new RegExp('/').source + '/'); + +assert(re.test('/'), 'input: "/"'); +assert(re.test('_/_'), 'input: "_/_"'); +assert(!re.test('\\'), 'input: "\\"'); + +reportCompare(0, 0); -- cgit v1.2.3