Lines Matching refs:result
28 * parser found, an .inheritance property equal to either null or the result of
633 let result = default_set || ["Window"];
634 if (result && !(result instanceof Set)) {
635 result = new Set(result);
646 result = new Set(set);
648 if (result && result.has("*")) {
651 if (result && result.has("Worker")) {
652 result.delete("Worker");
653 result.add("DedicatedWorker");
654 result.add("ServiceWorker");
655 result.add("SharedWorker");
657 return result;
1119 // IdlInterface.prototype.test_instance_of, because that could result
2641 // "Let O be the result of calling ToObject on the this value."
3151 var result;
3153 result = type.generic + "<" + type.idlType.map(formatType).join(", ") + ">";
3155 result = "(" + type.subtype.map(formatType).join(" or ") + ")";
3157 result = type.idlType;
3160 result += "?"
3162 return result;
3474 const astArray = results.map(result =>
3475 WebIDL2.parse(result.idl, { sourceName: result.spec })