src/jsdoc/Symbol.vala
authorAlan Knowles <alan@roojs.com>
Wed, 11 Jul 2018 14:23:00 +0000 (22:23 +0800)
committerAlan Knowles <alan@roojs.com>
Wed, 11 Jul 2018 14:23:00 +0000 (22:23 +0800)
src/jsdoc/Symbol.vala

index d37cf53..a7f955c 100644 (file)
@@ -542,7 +542,13 @@ namespace JSDOC {
             if (properties.length) {
                 thisProperties = this.properties;
                 for (var i = 0; i < properties.length; i++) {
-                    var property = new Symbol(this.alias+"#"+properties[i].name, [], "OBJECT", new DocComment("/**"+properties[i].desc+"\n@name "+properties[i].name+"\n@memberOf "+this.alias+"#*/"));
+                    var property = new Symbol(
+                        this.alias+"#"+properties[i].name,
+                         [], 
+                        "OBJECT",
+                         new DocComment(
+                            "/**"+properties[i].desc+"\n@name "+properties[i].name+"\n@memberOf "+this.alias+"#*/"
+                    ));
                     // TODO: shouldn't the following happen in the addProperty method of Symbol?
                     property.name = properties[i].name;
                     property.memberOf = this.alias;