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 +5 -0
- package/build/parser.cjs +2 -1
- package/package.json +1 -1
- package/packages/parser/index.js +1 -0
package/ChangeLog
CHANGED
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