about summary refs log tree commit diff
path: root/src/test/rustdoc-js-std/parser-generics.js
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume.gomez@huawei.com>2021-12-20 17:45:52 +0100
committerGuillaume Gomez <guillaume.gomez@huawei.com>2022-04-18 20:59:08 +0200
commitf5833e759ecd55c03afeb918263cb35fabc91177 (patch)
treef339a8d44570204e26687434d7f89eb05946062f /src/test/rustdoc-js-std/parser-generics.js
parent7cefee027ae8937058e4109911a4ded2e643399b (diff)
downloadrust-f5833e759ecd55c03afeb918263cb35fabc91177.tar.gz
rust-f5833e759ecd55c03afeb918263cb35fabc91177.zip
Add parser tests
Diffstat (limited to 'src/test/rustdoc-js-std/parser-generics.js')
-rw-r--r--src/test/rustdoc-js-std/parser-generics.js81
1 files changed, 81 insertions, 0 deletions
diff --git a/src/test/rustdoc-js-std/parser-generics.js b/src/test/rustdoc-js-std/parser-generics.js
new file mode 100644
index 00000000000..4ad65d0d644
--- /dev/null
+++ b/src/test/rustdoc-js-std/parser-generics.js
@@ -0,0 +1,81 @@
+const QUERY = ['<P>', 'A<B<C<D>, E>'];
+
+const PARSED = [
+    {
+        args: [],
+        elemName: null,
+        elems: [{
+            name: "",
+            fullPath: [""],
+            pathWithoutLast: [],
+            pathLast: "",
+            generics: [
+                {
+                    name: "p",
+                    fullPath: ["p"],
+                    pathWithoutLast: [],
+                    pathLast: "p",
+                    generics: [],
+                },
+            ],
+        }],
+        foundElems: 1,
+        id: "<P>",
+        nameSplit: null,
+        original: "<P>",
+        returned: [],
+        typeFilter: -1,
+        val: "<p>",
+        error: null,
+    },
+    {
+        args: [],
+        elemName: null,
+        elems: [{
+            name: "a",
+            fullPath: ["a"],
+            pathWithoutLast: [],
+            pathLast: "a",
+            generics: [
+                {
+                    name: "b",
+                    fullPath: ["b"],
+                    pathWithoutLast: [],
+                    pathLast: "b",
+                    generics: [
+                        {
+                            name: "c",
+                            fullPath: ["c"],
+                            pathWithoutLast: [],
+                            pathLast: "c",
+                            generics: [
+                                {
+                                    name: "d",
+                                    fullPath: ["d"],
+                                    pathWithoutLast: [],
+                                    pathLast: "d",
+                                    generics: [],
+                                },
+                            ],
+                        },
+                        {
+                            name: "e",
+                            fullPath: ["e"],
+                            pathWithoutLast: [],
+                            pathLast: "e",
+                            generics: [],
+                        },
+                    ],
+                },
+            ],
+        }],
+        foundElems: 1,
+        id: 'A<B<C<D>, E>',
+        nameSplit: null,
+        original: 'A<B<C<D>, E>',
+        returned: [],
+        typeFilter: -1,
+        val: 'a<b<c<d>, e>',
+        error: null,
+    }
+];