@@ -20,10 +20,12 @@ for (let i = 0; i < MAX_UNICODE_CODEPOINT; i++) {
20
20
}
21
21
22
22
console . log ( `/**
23
- * Generated by scripts/regenerate-unicode-identifier-parts.js on node${ process . version } with unicode${ process . versions . unicode }
24
- * based on http://www.unicode.org/reports/tr31/ and https://www.ecma-international.org/ecma-262/6.0/#sec-names-and-keywords
25
- * unicodeESNextIdentifierStart corresponds to the ID_Start and Other_ID_Start property, and
26
- * unicodeESNextIdentifierPart corresponds to ID_Continue, Other_ID_Continue, plus ID_Start and Other_ID_Start
27
- */` ) ;
23
+ * Generated by scripts/regenerate-unicode-identifier-parts.mjs on node${ process . version } with unicode${ process . versions . unicode }
24
+ * based on http://www.unicode.org/reports/tr31/ and https://www.ecma-international.org/ecma-262/6.0/#sec-names-and-keywords
25
+ * unicodeESNextIdentifierStart corresponds to the ID_Start and Other_ID_Start property, and
26
+ * unicodeESNextIdentifierPart corresponds to ID_Continue, Other_ID_Continue, plus ID_Start and Other_ID_Start
27
+ */` ) ;
28
+ console . log ( `// dprint-ignore` ) ;
28
29
console . log ( `const unicodeESNextIdentifierStart = [${ starts . join ( ", " ) } ];` ) ;
30
+ console . log ( `// dprint-ignore` ) ;
29
31
console . log ( `const unicodeESNextIdentifierPart = [${ parts . join ( ", " ) } ];` ) ;