-
Notifications
You must be signed in to change notification settings - Fork 475
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add tests for non-ASCII LineTerminator characters in string literals
- Loading branch information
Showing
4 changed files
with
66 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,16 @@ | ||
// Copyright (C) 2018 Richard Gibson. All rights reserved. | ||
// This code is governed by the BSD license found in the LICENSE file. | ||
|
||
/*--- | ||
esid: sec-literals-string-literals | ||
description: > | ||
U+2028 LINE SEPARATOR can appear in string literals (eval code). | ||
info: | | ||
11.8.4 String Literals | ||
All code points may appear literally in a string literal except for the | ||
closing quote code points, U+005C (REVERSE SOLIDUS), U+000D (CARRIAGE RETURN), | ||
and U+000A (LINE FEED). | ||
---*/ | ||
|
||
assert.sameValue(eval("'\u2028'"), "\u2028"); |
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,17 @@ | ||
// Copyright (C) 2018 Richard Gibson. All rights reserved. | ||
// This code is governed by the BSD license found in the LICENSE file. | ||
|
||
/*--- | ||
esid: sec-literals-string-literals | ||
description: > | ||
U+2028 LINE SEPARATOR can appear in string literals. | ||
info: | | ||
11.8.4 String Literals | ||
All code points may appear literally in a string literal except for the | ||
closing quote code points, U+005C (REVERSE SOLIDUS), U+000D (CARRIAGE RETURN), | ||
and U+000A (LINE FEED). | ||
---*/ | ||
|
||
// U+2028 in strings; UTF8(0x2028) = 0xE2 0x80 0xA8 | ||
assert.sameValue(" ", "\u2028"); |
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,16 @@ | ||
// Copyright (C) 2018 Richard Gibson. All rights reserved. | ||
// This code is governed by the BSD license found in the LICENSE file. | ||
|
||
/*--- | ||
esid: sec-literals-string-literals | ||
description: > | ||
U+2029 PARAGRAPH SEPARATOR can appear in string literals (eval code). | ||
info: | | ||
11.8.4 String Literals | ||
All code points may appear literally in a string literal except for the | ||
closing quote code points, U+005C (REVERSE SOLIDUS), U+000D (CARRIAGE RETURN), | ||
and U+000A (LINE FEED). | ||
---*/ | ||
|
||
assert.sameValue(eval("'\u2029'"), "\u2029"); |
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,17 @@ | ||
// Copyright (C) 2018 Richard Gibson. All rights reserved. | ||
// This code is governed by the BSD license found in the LICENSE file. | ||
|
||
/*--- | ||
esid: sec-literals-string-literals | ||
description: > | ||
U+2029 PARAGRAPH SEPARATOR can appear in string literals. | ||
info: | | ||
11.8.4 String Literals | ||
All code points may appear literally in a string literal except for the | ||
closing quote code points, U+005C (REVERSE SOLIDUS), U+000D (CARRIAGE RETURN), | ||
and U+000A (LINE FEED). | ||
---*/ | ||
|
||
// U+2029 in strings; UTF8(0x2029) = 0xE2 0x80 0xA9 | ||
assert.sameValue(" ", "\u2029"); |