goldstein 3.2.3 → 3.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/ChangeLog CHANGED
@@ -1,3 +1,8 @@
1
+ 2023.04.19, v3.2.4
2
+
3
+ fix:
4
+ - dc9866d parser: comment
5
+
1
6
  2023.04.19, v3.2.3
2
7
 
3
8
  fix:
package/build/parser.cjs CHANGED
@@ -5044,7 +5044,8 @@ var createParse = (parser) => (source) => {
5044
5044
  const options = {
5045
5045
  ecmaVersion: "latest",
5046
5046
  sourceType: "module",
5047
- locations: true
5047
+ locations: true,
5048
+ comment: true
5048
5049
  };
5049
5050
  const result = parser.parse(source, options);
5050
5051
  const tokens = Array.from(parser.tokenizer(source, options));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "goldstein",
3
- "version": "3.2.3",
3
+ "version": "3.2.4",
4
4
  "type": "module",
5
5
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
6
6
  "description": "JavaScript with no limits",
@@ -17,6 +17,7 @@ const createParse = (parser) => (source) => {
17
17
  ecmaVersion: 'latest',
18
18
  sourceType: 'module',
19
19
  locations: true,
20
+ comment: true,
20
21
  };
21
22
 
22
23
  const result = parser.parse(source, options);