@babel/parser
Advanced tools
Comparing version 7.3.4 to 7.4.0
{ | ||
"name": "@babel/parser", | ||
"version": "7.3.4", | ||
"version": "7.4.0", | ||
"description": "A JavaScript parser", | ||
@@ -33,4 +33,4 @@ "author": "Sebastian McKenzie <sebmck@gmail.com>", | ||
"@babel/helper-fixtures": "^7.2.0", | ||
"charcodes": "0.1.0", | ||
"unicode-11.0.0": "^0.7.8" | ||
"charcodes": "^0.2.0", | ||
"unicode-12.0.0": "^0.7.9" | ||
}, | ||
@@ -40,3 +40,3 @@ "bin": { | ||
}, | ||
"gitHead": "1f6454cc90fe33e0a32260871212e2f719f35741" | ||
"gitHead": "f1328fb913b5a93d54dfc6e3728b1f56c8f4a804" | ||
} |
@@ -81,2 +81,10 @@ // Type definitions for @babel/parser | ||
tokens?: boolean; | ||
/** | ||
* By default, the parser adds information about parentheses by setting | ||
* `extra.parenthesized` to `true` as needed. | ||
* When this option is `true` the parser creates `ParenthesizedExpression` | ||
* AST nodes instead of using the `extra` property. | ||
*/ | ||
createParenthesizedExpressions?: boolean; | ||
} | ||
@@ -83,0 +91,0 @@ |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
375478
9261