Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions crates/oxc_ast/src/ast_impl/js.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ impl<'a> Expression<'a> {
| Self::TSSatisfiesExpression(_)
| Self::TSTypeAssertion(_)
| Self::TSNonNullExpression(_)
| Self::TSInstantiationExpression(_)
)
}

Expand Down
24 changes: 12 additions & 12 deletions tasks/coverage/snapshots/semantic_babel.snap
Original file line number Diff line number Diff line change
Expand Up @@ -2361,24 +2361,24 @@ after transform: ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), Sc
rebuilt : ScopeId(0): [ScopeId(1), ScopeId(2), ScopeId(3), ScopeId(4), ScopeId(6), ScopeId(8)]

tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/type-arguments/instantiation-expression-binary-operator/input.ts
semantic error: Unresolved reference IDs mismatch for "b":
after transform: [ReferenceId(1)]
rebuilt : [ReferenceId(2)]
semantic error: Unresolved references mismatch:
after transform: ["a", "b", "c"]
rebuilt : ["a", "c"]

tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/type-arguments/instantiation-expression-binary-operator-babel-7/input.ts
semantic error: Unresolved reference IDs mismatch for "b":
after transform: [ReferenceId(1)]
rebuilt : [ReferenceId(2)]
semantic error: Unresolved references mismatch:
after transform: ["a", "b", "c"]
rebuilt : ["a", "c"]

tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/type-arguments/instantiation-expression-optional-chain/input.ts
semantic error: Unresolved reference IDs mismatch for "c":
after transform: [ReferenceId(1), ReferenceId(3)]
rebuilt : [ReferenceId(4)]
semantic error: Unresolved references mismatch:
after transform: ["a", "c"]
rebuilt : ["a"]

tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/type-arguments/instantiation-expression-optional-chain-babel-7/input.ts
semantic error: Unresolved reference IDs mismatch for "c":
after transform: [ReferenceId(1), ReferenceId(3)]
rebuilt : [ReferenceId(4)]
semantic error: Unresolved references mismatch:
after transform: ["a", "c"]
rebuilt : ["a"]

tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/type-arguments/new/input.ts
semantic error: Unresolved references mismatch:
Expand Down
10 changes: 1 addition & 9 deletions tasks/coverage/snapshots/transformer_babel.snap
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,6 @@ commit: 578ac4df

transformer_babel Summary:
AST Parsed : 2322/2322 (100.00%)
Positive Passed: 2312/2322 (99.57%)
Positive Passed: 2320/2322 (99.91%)
Mismatch: tasks/coverage/babel/packages/babel-parser/test/fixtures/es2022/class-private-properties/await-in-private-property-in-async/input.js
Mismatch: tasks/coverage/babel/packages/babel-parser/test/fixtures/es2022/class-properties/await-in-class-property-in-async/input.js
Mismatch: tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/type-arguments/instantiation-expression/input.ts
Mismatch: tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/type-arguments/instantiation-expression-asi/input.ts
Mismatch: tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/type-arguments/instantiation-expression-asi-babel-7/input.ts
Mismatch: tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/type-arguments/instantiation-expression-babel-7/input.ts
Mismatch: tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/type-arguments/instantiation-expression-binary-operator/input.ts
Mismatch: tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/type-arguments/instantiation-expression-binary-operator-babel-7/input.ts
Mismatch: tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/type-arguments/instantiation-expression-optional-chain/input.ts
Mismatch: tasks/coverage/babel/packages/babel-parser/test/fixtures/typescript/type-arguments/instantiation-expression-optional-chain-babel-7/input.ts
4 changes: 1 addition & 3 deletions tasks/coverage/snapshots/transformer_typescript.snap
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@ commit: 15392346

transformer_typescript Summary:
AST Parsed : 6531/6531 (100.00%)
Positive Passed: 6526/6531 (99.92%)
Mismatch: tasks/coverage/typescript/tests/cases/compiler/declarationEmitUsingTypeAlias2.ts
Positive Passed: 6528/6531 (99.95%)
Mismatch: tasks/coverage/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/autoAccessor2.ts
Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/classDeclaration/fields/esDecorators-classDeclaration-fields-staticPrivateAccessor.ts
Mismatch: tasks/coverage/typescript/tests/cases/conformance/esDecorators/esDecorators-decoratorExpression.2.ts
Mismatch: tasks/coverage/typescript/tests/cases/conformance/jsx/inline/inlineJsxAndJsxFragPragmaOverridesCompilerOptions.tsx
4 changes: 3 additions & 1 deletion tasks/transform_conformance/snapshots/babel.snap.md
Original file line number Diff line number Diff line change
Expand Up @@ -2605,7 +2605,9 @@ after transform: ["T", "f"]
rebuilt : ["f"]

* type-arguments/expr/input.ts
x Output mismatch
Unresolved references mismatch:
after transform: ["T", "f"]
rebuilt : ["f"]

* type-arguments/new/input.ts
Unresolved references mismatch:
Expand Down
Loading