diff options
| author | Guillaume Gomez <guillaume.gomez@huawei.com> | 2022-03-20 15:03:17 +0100 |
|---|---|---|
| committer | Guillaume Gomez <guillaume.gomez@huawei.com> | 2022-04-18 20:59:09 +0200 |
| commit | 699ae365dfadabb3d26f957341a9f176d73bc8af (patch) | |
| tree | 1dbb52f4b0a7990602b1577142b7d36b750cad7f /src/test/rustdoc-js-std/parser-weird-queries.js | |
| parent | c7de1a16f89b9aa3205f50c9cf2b9f6792ac6e4b (diff) | |
| download | rust-699ae365dfadabb3d26f957341a9f176d73bc8af.tar.gz rust-699ae365dfadabb3d26f957341a9f176d73bc8af.zip | |
Apply suggestions:
* Forbid generics without a path (so "<p>" is forbidden). * Change `handleSingleArg` so that it takes `results_others`, `results_in_args` and `results_returned` as arguments instead of using the "global" variables. * Change `createQueryElement` so that it returns the newly created element instead of taking `elems` as argument. * Improve documentation
Diffstat (limited to 'src/test/rustdoc-js-std/parser-weird-queries.js')
| -rw-r--r-- | src/test/rustdoc-js-std/parser-weird-queries.js | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/src/test/rustdoc-js-std/parser-weird-queries.js b/src/test/rustdoc-js-std/parser-weird-queries.js new file mode 100644 index 00000000000..87ebe21c49b --- /dev/null +++ b/src/test/rustdoc-js-std/parser-weird-queries.js @@ -0,0 +1,64 @@ +// This test is mostly to check that the parser still kinda outputs something +// (and doesn't enter an infinite loop!) even though the query is completely +// invalid. +const QUERY = ['a b', 'a b', 'a,b(c)']; + +const PARSED = [ + { + elems: [ + { + name: "a", + fullPath: ["a"], + pathWithoutLast: [], + pathLast: "a", + generics: [], + }, + { + name: "b", + fullPath: ["b"], + pathWithoutLast: [], + pathLast: "b", + generics: [], + }, + ], + foundElems: 2, + original: "a b", + returned: [], + typeFilter: -1, + userQuery: "a b", + error: null, + }, + { + elems: [ + { + name: "a", + fullPath: ["a"], + pathWithoutLast: [], + pathLast: "a", + generics: [], + }, + { + name: "b", + fullPath: ["b"], + pathWithoutLast: [], + pathLast: "b", + generics: [], + }, + ], + foundElems: 2, + original: "a b", + returned: [], + typeFilter: -1, + userQuery: "a b", + error: null, + }, + { + elems: [], + foundElems: 0, + original: "a,b(c)", + returned: [], + typeFilter: -1, + userQuery: "a,b(c)", + error: "Unexpected `(`", + }, +]; |
