18 Array.prototype.toSpliced = function() {
19 const me = this.slice();
20▶ // @ts-expect-error
21 Array.prototype.splice.apply(me, arguments);
22 return me;
· · ·
84 reject = rej;
85 });
86▶ // @ts-expect-error
87 return {promise, resolve, reject};
88 };
· · ·
414 checkExtraTypeFilterCharacters(start, parserState);
415 // typeFilterElem is not undefined. If it was, the elems.length check would have fired.
416▶ // @ts-expect-error
417 parserState.typeFilter = typeFilterElem.normalizedPathLast;
418 parserState.pos += 1;
· · ·
428 *
429 * If there is no `endChar`, this function will implicitly stop at the end
430▶ * without raising an error.
431 *
432 * @param {rustdoc.ParsedQuery<rustdoc.ParserQueryElement>} query
· · ·
920 * from it until we find another `"`.
921 *
922▶ * This function will throw an error in the following cases:
923 * * There is already another string element.
924 * * We are parsing a generic argument.
+ 55 more matches in this file