Lines Matching refs:add
57 ].forEach(add);
71 ].forEach(add);
101 add(name);
104 Object.getOwnPropertyNames(ctor).map(add);
106 if (ctor.__proto__) Object.getOwnPropertyNames(ctor.__proto__).map(add);
107 if (ctor.prototype) Object.getOwnPropertyNames(ctor.prototype).map(add);
109 Object.getOwnPropertyNames(new ctor()).map(add);
112 Object.getOwnPropertyNames(ctor()).map(add);
120 function add(name) { function
131 addStrings(node.key, add);
133 add(node.key);
136 if (node.quoted) add(node.property);
138 addStrings(node.property, add);
142 function add(name) { function
147 function addStrings(node, add) { argument
149 addStrings(node.consequent, add);
150 addStrings(node.alternative, add);
152 addStrings(node.tail_node(), add);
154 add(node.value);
212 addStrings(node.args[1], add);
216 addStrings(node.args[0], add);
223 addStrings(node.key, add);
225 add(node.key);
228 if (is_lhs(node, this.parent())) add(node.property);
230 if (is_lhs(node, this.parent())) addStrings(node.property, add);
290 function add(name) { function