Skip to content

Commit 1f6517d

Browse files
committed
fix(migrations): adding dummy implementations for changed interface
1 parent 947cd26 commit 1f6517d

File tree

1 file changed

+10
-0
lines changed
  • projects/igniteui-angular/migrations/common

1 file changed

+10
-0
lines changed

projects/igniteui-angular/migrations/common/util.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ import type {
88
Block,
99
BlockParameter,
1010
Comment,
11+
Component,
12+
Directive,
1113
Element,
1214
Expansion,
1315
ExpansionCase,
@@ -295,6 +297,14 @@ class SerializerVisitor implements Visitor {
295297
private _visitAll(nodes: Node[], separator = '', prefix = ''): string {
296298
return nodes.length > 0 ? prefix + nodes.map(a => a.visit(this, null)).join(separator) : '';
297299
}
300+
301+
public visitComponent(component: Component, context: any) {
302+
303+
}
304+
305+
public visitDirective(directive: Directive, context: any) {
306+
307+
}
298308
}
299309

300310

0 commit comments

Comments
 (0)