Ensure a space between attribute and property in dense mode

This commit is contained in:
David Siegel 2018-02-15 09:52:28 -08:00
Родитель 90c17644d3
Коммит a4d13c30a7
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -266,7 +266,7 @@ class CSharpRenderer extends ConvenienceRenderer {
if (!this.needAttributes) {
this.emitLine(property);
} else if (this.dense && attribute !== undefined) {
columns.push([attribute, property]);
columns.push([attribute, " ", property]);
} else {
if (attribute !== undefined) {
this.emitLine(attribute);