mirror of https://github.com/tc39/test262.git
30 lines
919 B
JavaScript
30 lines
919 B
JavaScript
// Copyright (C) 2019 Mike Pennisi. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
description: RegularExpressionClassChars may include the forward slash character
|
|
info: |
|
|
11.8.5Regular Expression Literals
|
|
|
|
RegularExpressionClass ::
|
|
[ RegularExpressionClassChars ]
|
|
|
|
RegularExpressionClassChars ::
|
|
[empty]
|
|
RegularExpressionClassChars RegularExpressionClassChar
|
|
|
|
RegularExpressionClassChar ::
|
|
RegularExpressionNonTerminator but not one of ] or \
|
|
RegularExpressionBackslashSequence
|
|
|
|
RegularExpressionNonTerminator ::
|
|
SourceCharacterbut not LineTerminator
|
|
esid: sec-literals-regular-expression-literals
|
|
---*/
|
|
|
|
assert(/[/]/.test("/"), "Forward slash");
|
|
assert.sameValue(/[/]/.test("x"), false, "Forward slash");
|
|
|
|
assert(/[//]/.test("/"), "Forward slash - repeated");
|
|
assert.sameValue(/[//]/.test("x"), false, "Forward slash - repeated");
|