From a6605064c1a0d05140843928734deafcca0f2af4 Mon Sep 17 00:00:00 2001 From: Arnavion Date: Fri, 11 Mar 2016 12:14:50 -0800 Subject: [PATCH] Exported variables are not setters, and the few that were (debugMode, etc.) now have an alternative (libjass.configure). --- build/typescript/walker.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/build/typescript/walker.ts b/build/typescript/walker.ts index b7581d0..acb063b 100644 --- a/build/typescript/walker.ts +++ b/build/typescript/walker.ts @@ -286,7 +286,6 @@ class Walker { var property = this._scope.enter(new AST.Property(ts.getTextOfNode(declaration.name))); property.getter = new AST.Getter(node, jsDoc.description, jsDoc.typeAnnotation, false); - property.setter = new AST.Setter(node, jsDoc.description, jsDoc.typeAnnotation, false); parent.members[property.name] = property;