Ensure a space between attribute and property in dense mode
This commit is contained in:
Родитель
90c17644d3
Коммит
a4d13c30a7
|
@ -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);
|
||||
|
|
Загрузка…
Ссылка в новой задаче