mirror of
https://github.com/tc39/test262.git
synced 2025-05-02 22:10:34 +02:00
@bathos discovered that multiple engines implement this incorrectly: https://twitter.com/bhathos/status/1478370049303928832 With that in mind, it’s probably worth adding some test coverage. Test generator patch: https://github.com/mathiasbynens/caniunicode/pull/6
18 lines
638 B
JavaScript
18 lines
638 B
JavaScript
// Copyright 2022 Mathias Bynens. All rights reserved.
|
||
// This code is governed by the BSD license found in the LICENSE file.
|
||
|
||
/*---
|
||
author: Mathias Bynens
|
||
esid: prod-PrivateIdentifier
|
||
description: |
|
||
Test that Unicode v13.0.0 ID_Continue characters are accepted as
|
||
identifier part characters in private class fields.
|
||
info: |
|
||
Generated by https://github.com/mathiasbynens/caniunicode
|
||
features: [class, class-fields-private]
|
||
---*/
|
||
|
||
class _ {
|
||
#_୕ඁ꠬ᪿᫀ𐺫𐺬𑇎𑇏𑤰𑤱𑤲𑤳𑤴𑤵𑤷𑤸𑤻𑤼𑤽𑤾𑥀𑥂𑥃𑥐𑥑𑥒𑥓𑥔𑥕𑥖𑥗𑥘𑥙𖿤𖿰𖿱🯰🯱🯲🯳🯴🯵🯶🯷🯸🯹;
|
||
};
|