Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps, lint): bump stylelint and typedoc deps #14452

Merged
merged 4 commits into from
Jul 3, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
refactor(migrations): add missing method from Visitor implementation
  • Loading branch information
simeonoff committed Jul 1, 2024
commit a8da50abeb847ce9c6aade1bab6f4fcec45ff3c4
5 changes: 5 additions & 0 deletions projects/igniteui-angular/migrations/common/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import type {
ExpansionCase,
HtmlParser,
HtmlTagDefinition,
LetDeclaration,
Node,
Text,
Visitor
Expand Down Expand Up @@ -287,6 +288,10 @@ class SerializerVisitor implements Visitor {
return parameter.expression;
}

public visitLetDeclaration(decl: LetDeclaration, _context: any) {
return decl;
}

private _visitAll(nodes: Node[], separator = '', prefix = ''): string {
return nodes.length > 0 ? prefix + nodes.map(a => a.visit(this, null)).join(separator) : '';
}
Expand Down
Loading