@@ -32,10 +32,10 @@ pub const DISPLAY_TRAIT: [&str; 3] = ["core", "fmt", "Display"];
32
32
pub const DOUBLE_ENDED_ITERATOR : [ & str ; 4 ] = [ "core" , "iter" , "traits" , "DoubleEndedIterator" ] ;
33
33
pub const DROP : [ & str ; 3 ] = [ "core" , "mem" , "drop" ] ;
34
34
pub const DURATION : [ & str ; 3 ] = [ "core" , "time" , "Duration" ] ;
35
- pub const EARLY_CONTEXT : [ & str ; 4 ] = [ "rustc" , "lint" , "context ", "EarlyContext" ] ;
35
+ pub const EARLY_CONTEXT : [ & str ; 2 ] = [ "rustc_lint " , "EarlyContext" ] ;
36
36
pub const EXIT : [ & str ; 3 ] = [ "std" , "process" , "exit" ] ;
37
- pub const F32_EPSILON : [ & str ; 2 ] = [ "f32" , "EPSILON" ] ;
38
- pub const F64_EPSILON : [ & str ; 2 ] = [ "f64" , "EPSILON" ] ;
37
+ pub const F32_EPSILON : [ & str ; 4 ] = [ "core" , " f32" , "<impl f32> ", "EPSILON" ] ;
38
+ pub const F64_EPSILON : [ & str ; 4 ] = [ "core" , " f64" , "<impl f64> ", "EPSILON" ] ;
39
39
pub const FILE : [ & str ; 3 ] = [ "std" , "fs" , "File" ] ;
40
40
pub const FILE_TYPE : [ & str ; 3 ] = [ "std" , "fs" , "FileType" ] ;
41
41
pub const FMT_ARGUMENTS_NEW_V1 : [ & str ; 4 ] = [ "core" , "fmt" , "Arguments" , "new_v1" ] ;
@@ -47,7 +47,7 @@ pub const FN_ONCE: [&str; 3] = ["core", "ops", "FnOnce"];
47
47
pub const FROM_FROM : [ & str ; 4 ] = [ "core" , "convert" , "From" , "from" ] ;
48
48
pub const FROM_TRAIT : [ & str ; 3 ] = [ "core" , "convert" , "From" ] ;
49
49
pub const FUTURE_FROM_GENERATOR : [ & str ; 3 ] = [ "core" , "future" , "from_generator" ] ;
50
- pub const HASH : [ & str ; 2 ] = [ "hash" , "Hash" ] ;
50
+ pub const HASH : [ & str ; 3 ] = [ "core" , "hash" , "Hash" ] ;
51
51
pub const HASHMAP : [ & str ; 5 ] = [ "std" , "collections" , "hash" , "map" , "HashMap" ] ;
52
52
pub const HASHMAP_ENTRY : [ & str ; 5 ] = [ "std" , "collections" , "hash" , "map" , "Entry" ] ;
53
53
pub const HASHSET : [ & str ; 5 ] = [ "std" , "collections" , "hash" , "set" , "HashSet" ] ;
@@ -58,7 +58,7 @@ pub const INTO_ITERATOR: [&str; 5] = ["core", "iter", "traits", "collect", "Into
58
58
pub const IO_READ : [ & str ; 3 ] = [ "std" , "io" , "Read" ] ;
59
59
pub const IO_WRITE : [ & str ; 3 ] = [ "std" , "io" , "Write" ] ;
60
60
pub const ITERATOR : [ & str ; 5 ] = [ "core" , "iter" , "traits" , "iterator" , "Iterator" ] ;
61
- pub const LATE_CONTEXT : [ & str ; 4 ] = [ "rustc" , "lint" , "context ", "LateContext" ] ;
61
+ pub const LATE_CONTEXT : [ & str ; 2 ] = [ "rustc_lint " , "LateContext" ] ;
62
62
pub const LINKED_LIST : [ & str ; 4 ] = [ "alloc" , "collections" , "linked_list" , "LinkedList" ] ;
63
63
pub const LINT : [ & str ; 3 ] = [ "rustc_session" , "lint" , "Lint" ] ;
64
64
pub const MEM_DISCRIMINANT : [ & str ; 3 ] = [ "core" , "mem" , "discriminant" ] ;
@@ -86,8 +86,8 @@ pub const PATH_BUF_AS_PATH: [&str; 4] = ["std", "path", "PathBuf", "as_path"];
86
86
pub const PATH_TO_PATH_BUF : [ & str ; 4 ] = [ "std" , "path" , "Path" , "to_path_buf" ] ;
87
87
pub const POLL : [ & str ; 4 ] = [ "core" , "task" , "poll" , "Poll" ] ;
88
88
pub const PTR_EQ : [ & str ; 3 ] = [ "core" , "ptr" , "eq" ] ;
89
- pub const PTR_NULL : [ & str ; 2 ] = [ "ptr" , "null" ] ;
90
- pub const PTR_NULL_MUT : [ & str ; 2 ] = [ "ptr" , "null_mut" ] ;
89
+ pub const PTR_NULL : [ & str ; 3 ] = [ "core" , "ptr" , "null" ] ;
90
+ pub const PTR_NULL_MUT : [ & str ; 3 ] = [ "core" , "ptr" , "null_mut" ] ;
91
91
pub const PUSH_STR : [ & str ; 4 ] = [ "alloc" , "string" , "String" , "push_str" ] ;
92
92
pub const RANGE_ARGUMENT_TRAIT : [ & str ; 3 ] = [ "core" , "ops" , "RangeBounds" ] ;
93
93
pub const RC : [ & str ; 3 ] = [ "alloc" , "rc" , "Rc" ] ;
@@ -107,7 +107,7 @@ pub const RESULT_ERR: [&str; 4] = ["core", "result", "Result", "Err"];
107
107
pub const RESULT_OK : [ & str ; 4 ] = [ "core" , "result" , "Result" , "Ok" ] ;
108
108
pub const RWLOCK_READ_GUARD : [ & str ; 4 ] = [ "std" , "sync" , "rwlock" , "RwLockReadGuard" ] ;
109
109
pub const RWLOCK_WRITE_GUARD : [ & str ; 4 ] = [ "std" , "sync" , "rwlock" , "RwLockWriteGuard" ] ;
110
- pub const SERDE_DESERIALIZE : [ & str ; 2 ] = [ "_serde " , "Deserialize" ] ;
110
+ pub const SERDE_DESERIALIZE : [ & str ; 3 ] = [ "serde" , "de ", "Deserialize" ] ;
111
111
pub const SERDE_DE_VISITOR : [ & str ; 3 ] = [ "serde" , "de" , "Visitor" ] ;
112
112
pub const SLICE_INTO_VEC : [ & str ; 4 ] = [ "alloc" , "slice" , "<impl [T]>" , "into_vec" ] ;
113
113
pub const SLICE_ITER : [ & str ; 4 ] = [ "core" , "slice" , "iter" , "Iter" ] ;
0 commit comments