We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84af12f commit 58a1fe5Copy full SHA for 58a1fe5
projects/igniteui-angular/migrations/common/util.ts
@@ -6,7 +6,6 @@ import { execSync } from 'child_process';
6
import {
7
Attribute,
8
Block,
9
- BlockGroup,
10
BlockParameter,
11
Comment,
12
Element,
@@ -284,9 +283,6 @@ class SerializerVisitor implements Visitor {
284
283
return parameter.expression;
285
}
286
287
- // XXX: This **HAS** to be removed in the next major release of Angular (v17) as it will error out again
288
- public visitBlockGroup(_group: BlockGroup, _context: any) { }
289
-
290
private _visitAll(nodes: Node[], separator = '', prefix = ''): string {
291
return nodes.length > 0 ? prefix + nodes.map(a => a.visit(this, null)).join(separator) : '';
292
0 commit comments