Test forward slash in RegularExpressionClassChar

This commit is contained in:
Mike Pennisi 2019-02-09 18:24:22 -05:00 committed by Rick Waldron
parent b9f43c0711
commit cc09757478
1 changed files with 29 additions and 0 deletions

View File

@ -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");