summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/RegExp/prototype/Symbol.replace/subst-after.js
blob: 92dcae5319f4807bc0f38a513bba053886d3e475 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
description: >
    Substitution pattern: text after match
es6id: 21.2.5.8
info: |
    16. Repeat, for each result in results,
        [...]
        m. If functionalReplace is true, then
           [...]
        n. Else,
           i. Let replacement be GetSubstitution(matched, S, position,
              captures, replaceValue).
        [...]

    21.1.3.14.1 Runtime Semantics: GetSubstitution

    Code units: 0x0024, 0x0027

    Unicode Characters: $'

    Replacement text:
    If tailPos ≥ stringLength, the replacement is the empty String. Otherwise
    the replacement is the substring of str that starts at index tailPos and
    continues to the end of str.
features: [Symbol.replace]
---*/

assert.sameValue(/c/[Symbol.replace]('abc', '[$\']'), 'ab[]');
assert.sameValue(/b/[Symbol.replace]('abc', '[$\']'), 'a[c]c');

reportCompare(0, 0);