-
Notifications
You must be signed in to change notification settings - Fork 473
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8162f8c
commit c1281db
Showing
3 changed files
with
60 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// Copyright (C) 2023 Veera Sivarajan. All rights reserved. | ||
// This code is governed by the BSD license found in the LICENSE file. | ||
|
||
/*--- | ||
esid: sec-keywords-and-reserved-words | ||
description: > | ||
ReservedWord (false) cannot contain UnicodeEscapeSequence. | ||
info: | | ||
Note 1 | ||
Per 5.1.5, keywords in the grammar match literal sequences of specific SourceCharacter elements. | ||
A code point in a keyword cannot be expressed by a \ UnicodeEscapeSequence. | ||
negative: | ||
phase: parse | ||
type: SyntaxError | ||
---*/ | ||
|
||
$DONOTEVALUATE(); | ||
|
||
f\u{61}lse; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// Copyright (C) 2023 Veera Sivarajan. All rights reserved. | ||
// This code is governed by the BSD license found in the LICENSE file. | ||
|
||
/*--- | ||
esid: sec-keywords-and-reserved-words | ||
description: > | ||
ReservedWord (true) cannot contain UnicodeEscapeSequence. | ||
info: | | ||
Note 1 | ||
Per 5.1.5, keywords in the grammar match literal sequences of specific SourceCharacter elements. | ||
A code point in a keyword cannot be expressed by a \ UnicodeEscapeSequence. | ||
negative: | ||
phase: parse | ||
type: SyntaxError | ||
---*/ | ||
|
||
$DONOTEVALUATE(); | ||
|
||
tru\u{65}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// Copyright (C) 2023 Veera Sivarajan. All rights reserved. | ||
// This code is governed by the BSD license found in the LICENSE file. | ||
|
||
/*--- | ||
esid: sec-keywords-and-reserved-words | ||
description: > | ||
ReservedWord (null) cannot contain UnicodeEscapeSequence. | ||
info: | | ||
Note 1 | ||
Per 5.1.5, keywords in the grammar match literal sequences of specific SourceCharacter elements. | ||
A code point in a keyword cannot be expressed by a \ UnicodeEscapeSequence. | ||
negative: | ||
phase: parse | ||
type: SyntaxError | ||
---*/ | ||
|
||
$DONOTEVALUATE(); | ||
|
||
n\u{75}ll; |