mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 04:01:39 +03:00
16 lines
390 B
TypeScript
16 lines
390 B
TypeScript
// @Filename: jsdocInvalidTokens.js
|
|
// @strict: true
|
|
// @allowJs: true
|
|
// @checkJs: true
|
|
// @noEmit: true
|
|
|
|
/**
|
|
*
|
|
* unicode-escape = "\u{abcdefghi}" -- should not have error for invalid unicode escape
|
|
* unicode-escape2 = "qq\u{abcdefghi}" -- no error here either
|
|
* quoted-pair = "\" -- should not have error for invalid quote sequence
|
|
* or for the tag below:
|
|
* @private
|
|
*/
|
|
var hi = 1
|