diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2018-06-16 14:14:18 +0200 |
|---|---|---|
| committer | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2018-06-16 14:14:18 +0200 |
| commit | afeb790ea148ce7dfa156fad5d55cabf645f26be (patch) | |
| tree | 2458de1c23d857f583fcbd65cce3aaaf9750dfa1 /src/test/rustdoc-js | |
| parent | a385095f9a6d4d068102b6c72fbdc86ac2667e51 (diff) | |
| download | rust-afeb790ea148ce7dfa156fad5d55cabf645f26be.tar.gz rust-afeb790ea148ce7dfa156fad5d55cabf645f26be.zip | |
Fix macro missing from doc search
Diffstat (limited to 'src/test/rustdoc-js')
| -rw-r--r-- | src/test/rustdoc-js/macro-check.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/test/rustdoc-js/macro-check.js b/src/test/rustdoc-js/macro-check.js new file mode 100644 index 00000000000..fb616884333 --- /dev/null +++ b/src/test/rustdoc-js/macro-check.js @@ -0,0 +1,20 @@ +// Copyright 2018 The Rust Project Developers. See the COPYRIGHT +// file at the top-level directory of this distribution and at +// http://rust-lang.org/COPYRIGHT. +// +// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or +// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license +// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + +// ignore-order + +const QUERY = 'panic'; + +const EXPECTED = { + 'others': [ + { 'path': 'std', 'name': 'panic', ty: 14 }, // 15 is for macros + { 'path': 'std', 'name': 'panic', ty: 0 }, // 0 is for modules + ], +}; |
