File: glob_private.rs

package info (click to toggle)
rustc-web 1.78.0%2Bdfsg1-2~deb11u3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,245,360 kB
  • sloc: xml: 147,985; javascript: 18,022; sh: 11,083; python: 10,265; ansic: 6,172; cpp: 5,023; asm: 4,390; makefile: 4,269
file content (32 lines) | stat: -rw-r--r-- 1,182 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//@ edition:2018

// @is "$.index[*][?(@.name=='mod1')].inner.module.is_stripped" "true"
mod mod1 {
    // @is "$.index[*][?(@.name=='mod2')].inner.module.is_stripped" "true"
    mod mod2 {
        // @set m2pub_id = "$.index[*][?(@.name=='Mod2Public')].id"
        pub struct Mod2Public;

        // @!has "$.index[*][?(@.name=='Mod2Private')]"
        struct Mod2Private;
    }

    // @set mod2_use_id = "$.index[*][?(@.docs=='Mod2 re-export')].id"
    // @is "$.index[*][?(@.docs=='Mod2 re-export')].inner.import.name" \"mod2\"
    /// Mod2 re-export
    pub use self::mod2::*;

    // @set m1pub_id = "$.index[*][?(@.name=='Mod1Public')].id"
    pub struct Mod1Public;
    // @!has "$.index[*][?(@.name=='Mod1Private')]"
    struct Mod1Private;
}

// @set mod1_use_id = "$.index[*][?(@.docs=='Mod1 re-export')].id"
// @is "$.index[*][?(@.docs=='Mod1 re-export')].inner.import.name" \"mod1\"
/// Mod1 re-export
pub use mod1::*;

// @ismany "$.index[*][?(@.name=='mod2')].inner.module.items[*]" $m2pub_id
// @ismany "$.index[*][?(@.name=='mod1')].inner.module.items[*]" $m1pub_id $mod2_use_id
// @ismany "$.index[*][?(@.name=='glob_private')].inner.module.items[*]" $mod1_use_id