2019-09-06 13:53:02 +02:00
|
|
|
// Copyright 2019 the V8 project authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2024-08-14 20:41:00 +02:00
|
|
|
// Flags: --allow-natives-syntax
|
2019-09-06 13:53:02 +02:00
|
|
|
|
|
|
|
assertArrayEquals(["o"], /.(?<!^.)/m.exec("foobar"));
|
|
|
|
assertArrayEquals(["o"], /.(?<!\b.)/m.exec("foobar"));
|
|
|
|
assertArrayEquals(["f"], /.(?<!\B.)/m.exec("foobar"));
|