mirror of https://github.com/AMT-Cheif/drift.git
Fix missing commas between type arguments
This commit is contained in:
parent
ae40dd6d81
commit
e1bdc6bde5
|
@ -556,4 +556,11 @@ class _AddFromAst extends GeneralizingAstVisitor<void> {
|
|||
_visitCommaSeparated(node.elements);
|
||||
_childEntities([node.rightBracket]);
|
||||
}
|
||||
|
||||
@override
|
||||
void visitTypeArgumentList(TypeArgumentList node) {
|
||||
_builder.addText('<');
|
||||
_visitCommaSeparated(node.arguments);
|
||||
_builder.addText('>');
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue