|
| 1 | +# Definitions |
| 2 | + |
| 3 | +The definition of an element adds the element's name to its corresponding [namespace]. |
| 4 | +The following is a list of elements that may introduce names: |
| 5 | + |
| 6 | + |
| 7 | +## Types |
| 8 | +### `mod` |
| 9 | +### `extern crate` |
| 10 | +### `struct` |
| 11 | +### `union` |
| 12 | +### `enum` (and variants) |
| 13 | +### `trait` definition |
| 14 | +### `type` alias |
| 15 | +### Associated type definition |
| 16 | +### Built-in types |
| 17 | +### Type parameters |
| 18 | +### `Self` type |
| 19 | +### Tool attribute modules |
| 20 | +extern crates will shadow tool modules. |
| 21 | +That is, a `clippy` crate will cause #[clippy::foo] to stop working (or only allow attributes from the crate). |
| 22 | + |
| 23 | +## Values |
| 24 | + |
| 25 | +### Function definitions |
| 26 | +### `const` definitions |
| 27 | +### `static` definitions |
| 28 | +### `struct` constructors |
| 29 | +### `enum` variant constructors |
| 30 | +### `Self` constructors |
| 31 | +### Method definitions |
| 32 | +### Associated const definitions |
| 33 | +### Local bindings |
| 34 | +#### `let` |
| 35 | +#### `if let` |
| 36 | +#### `while let` |
| 37 | +#### `for` |
| 38 | +#### `match` arms |
| 39 | +#### function parameters |
| 40 | +#### closure parameters |
| 41 | +### Captured closure variables |
| 42 | +### Loop labels |
| 43 | + |
| 44 | + |
| 45 | +## Macros |
| 46 | +- Invalid (reserved) names: `cfg`, `cfg_attr`, `derive` check_reserved_macro_name |
| 47 | + User cannot create: |
| 48 | + - macro_rules! |
| 49 | + - function-like procedural macro |
| 50 | + - attribute macro |
| 51 | + - derive macro |
| 52 | + - Note: helpers can define them, but they are ignored |
| 53 | + |
| 54 | + |
| 55 | +Invocation style influences text vs. path scope lookup: |
| 56 | +- Single segment path (`foo!`) — first textual, then path-based if not found. |
| 57 | +- Multi-segment path (`foo::bar!`) — path-based only |
| 58 | + |
| 59 | +### `macro_rules!` macro |
| 60 | +See https://github.com/rust-lang/rust/issues/35896 for tons of info. |
| 61 | +May not be named `macro_rules`. |
| 62 | +Un-attributed macro_rules!: |
| 63 | + Enters (textual) scope at point of definition. |
| 64 | + Valid until end of current block (module, including nested across files `mod m;`, block-expr), including nested blocks. |
| 65 | + May shadow: |
| 66 | + - Previous macro_rules! macros. |
| 67 | + - Built-in function-like macros. |
| 68 | + - function-like proc-macro |
| 69 | + Does not shadow (somehow magically kept separate, TODO: figure out why) |
| 70 | + - built-in and proc-macro attributes, derive macros (and helpers) |
| 71 | + |
| 72 | +`#[macro_use]` on `mod`: |
| 73 | + Extends textual scope of macros defined in that module to extend to the end of the parent module. |
| 74 | + TODO: This should be clarified in macros-by-example.md. |
| 75 | + |
| 76 | +`#[macro_use]` on `extern crate`: |
| 77 | + Imports all macros annotated with `macro_export` into this crate's root module. |
| 78 | + (into the "prelude"? TODO: need to check which prelude) |
| 79 | + These can be shadowed by locally defined macro_rules! macros. |
| 80 | + May be used before, order doesn't matter, scope is entire crate. |
| 81 | + "in case of a conflict, the last macro imported wins." |
| 82 | + Cannot be used on `extern crate self as foo;` |
| 83 | + Can only be done in crate root. |
| 84 | + |
| 85 | + |
| 86 | +`#[macro_export]` on macro_rules!: |
| 87 | + Adds the macro to path-scope into the **crate root**. |
| 88 | + Order doesn't matter, may be used before defined. |
| 89 | + TODO: Note it is an error to export multiple macros of the same name. `duplicate_macro_exports`. |
| 90 | + https://github.com/rust-lang/rust/issues/35896 |
| 91 | + Also clashes with proc-macro definitions. |
| 92 | + Makes it accessible from other crates (using paths). |
| 93 | + Can access within same crate from `crate::name` or `self::name` in root, etc. |
| 94 | + Interesting discussion of macro shadowing: https://github.com/rust-lang/rust/pull/50143 |
| 95 | + TODO: Note that the order that they are added to the root is not defined? That probably doesn't matter since duplicates are not allowed. |
| 96 | + TODO: `use` vs exported macro of same name, probably not allowed? |
| 97 | + Cannot be the same name as a `#[proc_macro]` in the same crate. |
| 98 | + |
| 99 | + |
| 100 | +### Built-in macros |
| 101 | +Macros are defined in Resolve.builtin_macros. |
| 102 | + \_\_rust_unstable_column |
| 103 | + asm |
| 104 | + assert |
| 105 | + bench |
| 106 | + cfg |
| 107 | + column |
| 108 | + compile_error |
| 109 | + concat |
| 110 | + concat_idents |
| 111 | + env |
| 112 | + file |
| 113 | + format_args |
| 114 | + format_args_nl |
| 115 | + global_asm |
| 116 | + include |
| 117 | + include_bytes |
| 118 | + include_str |
| 119 | + line |
| 120 | + log_syntax |
| 121 | + module_path |
| 122 | + option_env |
| 123 | + stringify |
| 124 | + test |
| 125 | + test_case |
| 126 | + trace_macros |
| 127 | + Plus any plugins |
| 128 | + |
| 129 | + |
| 130 | +### Built-in derives |
| 131 | +Derives are defined in Resolve.builtin_macros. |
| 132 | + Clone |
| 133 | + Copy |
| 134 | + Debug |
| 135 | + Decodable |
| 136 | + Default |
| 137 | + Encodable |
| 138 | + Eq |
| 139 | + Hash |
| 140 | + Ord |
| 141 | + PartialEq |
| 142 | + PartialOrd |
| 143 | + RustcDecodable |
| 144 | + RustcEncodable |
| 145 | + Send |
| 146 | + Sync |
| 147 | + |
| 148 | + |
| 149 | +### Built-in attributes |
| 150 | +The complete list of built-in attributes are defined in BUILTIN_ATTRIBUTES. |
| 151 | + |
| 152 | +### Tool attributes |
| 153 | +### Function-like procedural macros |
| 154 | +### Derive macros |
| 155 | +### Derive macro helpers |
| 156 | +### Attribute macros |
| 157 | + |
| 158 | + |
| 159 | + |
| 160 | +# SCRATCH NOTES |
| 161 | + |
| 162 | +`mod` adds the module name in the type namespace. |
| 163 | +`mod` name scope is …. |
| 164 | + |
| 165 | +`struct` adds the struct name to the type namespace, the name of the struct |
| 166 | +as a constructor function to the value namespace, and the `Self` type to |
| 167 | +the type namespace. |
| 168 | + |
| 169 | + |
| 170 | + |
| 171 | +- Type Namespace |
| 172 | + - [`mod`] definitions |
| 173 | + - [`struct`], [`union`], [`enum`], and [`enum` variant] definitions |
| 174 | + - [`trait`] definitions |
| 175 | + - [Type aliases] |
| 176 | + - [Associated type] definitions |
| 177 | + - [Built-in types] |
| 178 | + - [Type parameters] |
| 179 | + - [`Self` type] |
| 180 | + - [Tool attribute modules] |
| 181 | +- Value Namespace |
| 182 | + - [Function] definitions |
| 183 | + - [`const`] definitions |
| 184 | + - [`static`] definitions |
| 185 | + - [`struct` constructors] |
| 186 | + - [`enum` variant constructors] |
| 187 | + - [`Self` constructors] |
| 188 | + - [Method] definitions |
| 189 | + - [Associated const] definitions |
| 190 | + - Local bindings — [`let`], [`if let`], [`while let`], [`for`], [`match`] |
| 191 | + arms, [function] parameters, [closure] parameters |
| 192 | + - Captured [closure] variables |
| 193 | + - [Loop labels] |
| 194 | +- Macro Namespace |
| 195 | + - [`macro_rules`] definitions |
| 196 | + - [Built-in macros] |
| 197 | + - [Built-in attributes] |
| 198 | + - [Tool attributes] |
| 199 | + - [Function-like procedural macros] |
| 200 | + - [Derive macros] |
| 201 | + - [Derive macro helpers] |
| 202 | + - [Attribute macros] |
0 commit comments