acorn-typescript
Advanced tools
Comparing version 1.4.7 to 1.4.8
@@ -5,2 +5,9 @@ # Changelog | ||
### [1.4.8](https://github.com/TyrealHu/acorn-typescript/compare/v1.4.7...v1.4.8) (2023-10-09) | ||
### 🐛 Bug Fixes | ||
* 🐛 parse import specifier with keyword ([91a27a9](https://github.com/TyrealHu/acorn-typescript/commit/91a27a90800e37a41a650ba71be6b891128e9f83)) | ||
### [1.4.7](https://github.com/TyrealHu/acorn-typescript/compare/v1.4.6...v1.4.7) (2023-09-21) | ||
@@ -7,0 +14,0 @@ |
@@ -260,2 +260,3 @@ import * as acornNamespace from 'acorn'; | ||
parseExprOp(left: any, leftStartPos: number, leftStartLoc: Position, minPrec: number, forInit: boolean): any; | ||
parseImportSpecifiers(): any[]; | ||
/** | ||
@@ -435,3 +436,4 @@ * @param {Node} node this may be ImportDeclaration | | ||
jsx_parseAttribute(): any; | ||
parseImportSpecifiers(): any; | ||
parseImportDefaultSpecifier(): any; | ||
parseImportNamespaceSpecifier(): any; | ||
parseImportAttributes(): any; | ||
@@ -438,0 +440,0 @@ parseMaybeImportAttributes(node: any): any; |
@@ -151,4 +151,6 @@ import type { Parser, Node, TokenType, Position } from 'acorn'; | ||
parseImportSpecifiers(): any; | ||
parseImportDefaultSpecifier(): any; | ||
parseImportNamespaceSpecifier(): any; | ||
parseImportAttributes(): any; | ||
parseMaybeImportAttributes(node: any): any; | ||
} |
{ | ||
"name": "acorn-typescript", | ||
"version": "1.4.7", | ||
"version": "1.4.8", | ||
"description": "Alternative, TypeScript parser", | ||
@@ -5,0 +5,0 @@ "source": "src/index.ts", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
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
302438
2399