Files
rust/src/test/rustdoc-js-std/parser-quote.js

90 lines
2.1 KiB
JavaScript
Raw Normal View History

2021-12-20 17:45:52 +01:00
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,
2022-01-03 16:43:30 +01:00
userQuery: "-> \"p\"",
2021-12-20 17:45:52 +01:00
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,
2022-01-03 16:43:30 +01:00
userQuery: "\"const\": \"p\"",
2021-12-20 17:45:52 +01:00
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,
2022-01-03 16:43:30 +01:00
userQuery: "(\"p\")",
2021-12-20 17:45:52 +01:00
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,
2022-01-03 16:43:30 +01:00
userQuery: "\"p\"<p>",
2021-12-20 17:45:52 +01:00
error: null,
},
];