Home | History | Annotate | Download | only in tools

Lines Matching defs:name

15       var name = names[i];
17 if (name === "length" ||
18 name === "name" ||
19 name === "arguments" ||
20 name === "caller" ||
21 name === "prototype") {
26 if (this_name === "prototype" && name === "constructor") continue;
28 if (this_name === "__PROTO__" && name === "constructor") continue;
30 var property = { "name": name };
32 var value = object[name];
35 result[name] = property;
47 property.properties = GetProperties(name, value);
49 result[name] = property;