about summary refs log tree commit diff
path: root/src/bootstrap/doc.rs
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2018-01-17 23:43:26 +0100
committerGitHub <noreply@github.com>2018-01-17 23:43:26 +0100
commit6c64f0bff60026107c0535c91daa7d8d192efe38 (patch)
treef945351e5663ce36722becdde332091acf283bd0 /src/bootstrap/doc.rs
parent0f9c784751434c70ddd6719ccda6817c819126f9 (diff)
parent3a7e247acb6cd9c1bc9707d0b37ebba34f788006 (diff)
downloadrust-6c64f0bff60026107c0535c91daa7d8d192efe38.tar.gz
rust-6c64f0bff60026107c0535c91daa7d8d192efe38.zip
Rollup merge of #47250 - GuillaumeGomez:test-rustdoc-js, r=Mark-Simulacrum
Test rustdoc js

Add tests for the rustdoc search. It was heavily required because of all the recent breaking changes that happened while I went through improvements in doc search (add search in/for generic search for example).
Diffstat (limited to 'src/bootstrap/doc.rs')
-rw-r--r--src/bootstrap/doc.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bootstrap/doc.rs b/src/bootstrap/doc.rs
index d66c01eb499..2b765fa498e 100644
--- a/src/bootstrap/doc.rs
+++ b/src/bootstrap/doc.rs
@@ -419,8 +419,8 @@ impl Step for Standalone {
 
 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
 pub struct Std {
-    stage: u32,
-    target: Interned<String>,
+    pub stage: u32,
+    pub target: Interned<String>,
 }
 
 impl Step for Std {