mirror of https://github.com/tc39/test262.git
Test forward slash in RegularExpressionClassChar
This commit is contained in:
parent
b9f43c0711
commit
cc09757478
|
@ -0,0 +1,29 @@
|
|||
// 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");
|
Loading…
Reference in New Issue