diff options
| author | Guillaume Gomez <guillaume.gomez@huawei.com> | 2021-12-20 17:45:52 +0100 |
|---|---|---|
| committer | Guillaume Gomez <guillaume.gomez@huawei.com> | 2022-04-18 20:59:08 +0200 |
| commit | f5833e759ecd55c03afeb918263cb35fabc91177 (patch) | |
| tree | f339a8d44570204e26687434d7f89eb05946062f /src/test/rustdoc-js-std/parser-quote.js | |
| parent | 7cefee027ae8937058e4109911a4ded2e643399b (diff) | |
| download | rust-f5833e759ecd55c03afeb918263cb35fabc91177.tar.gz rust-f5833e759ecd55c03afeb918263cb35fabc91177.zip | |
Add parser tests
Diffstat (limited to 'src/test/rustdoc-js-std/parser-quote.js')
| -rw-r--r-- | src/test/rustdoc-js-std/parser-quote.js | 89 |
1 files changed, 89 insertions, 0 deletions
diff --git a/src/test/rustdoc-js-std/parser-quote.js b/src/test/rustdoc-js-std/parser-quote.js new file mode 100644 index 00000000000..de7b004159f --- /dev/null +++ b/src/test/rustdoc-js-std/parser-quote.js @@ -0,0 +1,89 @@ +const QUERY = ['-> "p"', '"const": "p"', '("p")', '"p"<p>']; + +const PARSED = [ + { + args: [], + elemName: null, + elems: [], + foundElems: 1, + id: "-> \"p\"", + nameSplit: null, + original: "-> \"p\"", + returned: [{ + name: "p", + fullPath: ["p"], + pathWithoutLast: [], + pathLast: "p", + generics: [], + }], + typeFilter: -1, + val: "-> \"p\"", + error: null, + }, + // This one checks that if quotes are used on the type filter, they're + // simply ignored. + { + args: [], + elemName: null, + elems: [{ + name: "p", + fullPath: ["p"], + pathWithoutLast: [], + pathLast: "p", + generics: [], + }], + foundElems: 1, + id: "\"const\": \"p\"", + nameSplit: null, + original: "\"const\": \"p\"", + returned: [], + typeFilter: 17, + val: "\"const\": \"p\"", + error: null, + }, + { + args: [{ + name: "p", + fullPath: ["p"], + pathWithoutLast: [], + pathLast: "p", + generics: [], + }], + elemName: null, + elems: [], + foundElems: 1, + id: "(\"p\")", + nameSplit: null, + original: "(\"p\")", + returned: [], + typeFilter: -1, + val: "(\"p\")", + error: null, + }, + // This test checks that a literal item can still have generics. + { + args: [], + elemName: null, + elems: [{ + name: "p", + fullPath: ["p"], + pathWithoutLast: [], + pathLast: "p", + generics: [{ + name: "p", + fullPath: ["p"], + pathWithoutLast: [], + pathLast: "p", + generics: [], + }], + }], + foundElems: 1, + id: "\"p\"<p>", + nameSplit: null, + original: "\"p\"<p>", + returned: [], + typeFilter: -1, + val: "\"p\"<p>", + error: null, + }, +]; |
