Skip to content

Commit 8fec49a

Browse files
committed
Linting
1 parent 825fd9d commit 8fec49a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/ast-transform/transform-object-expression.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import type * as angular from '@angular/compiler';
22
import type * as babel from '@babel/types';
33

4-
import { type Transformer } from './transform.ts';
54
import type { NGNode, RawNGSpan } from '../types.ts';
5+
import { type Transformer } from './transform.ts';
66

77
export const visitLiteralMap = (
88
node: angular.LiteralMap,

src/transform-template-binding.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ class TemplateBindingTransformer extends Source {
5858
properties: Partial<T> & { type: T['type'] },
5959
location: angular.AST | RawNGSpan | [number, number],
6060
) {
61-
return this.createNode<T>(properties, location);
61+
return super.createNode<T>(properties, location);
6262
}
6363

6464
#transform<T extends NGNode>(node: angular.AST) {

0 commit comments

Comments
 (0)