Fix writing components

This commit is contained in:
Simon Binder 2021-09-10 11:55:20 +02:00
parent 24f6ec5c01
commit efcd9bfa83
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
1 changed files with 2 additions and 2 deletions

View File

@ -121,9 +121,9 @@ class SqlWriter extends NodeSqlBuilder {
query.placeholders.singleWhere((p) => p.astNode == e);
_writeRawInSpaces('\${${placeholderContextName(moorPlaceholder)}.sql}');
} else {
return super.visitMoorSpecificNode(e, arg);
}
return super.visitMoorSpecificNode(e, arg);
}
}