We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 024df5c commit 5343eb7Copy full SHA for 5343eb7
src/libsyntax/parse/token.rs
@@ -423,6 +423,10 @@ macro_rules! declare_special_idents_and_keywords {(
423
static SELF_KEYWORD_NAME: Name = 1;
424
static STATIC_KEYWORD_NAME: Name = 2;
425
426
+// NB: leaving holes in the ident table is bad! a different ident will get
427
+// interned with the id from the hole, but it will be between the min and max
428
+// of the reserved words, and thus tagged as "reserved".
429
+
430
declare_special_idents_and_keywords! {
431
pub mod special_idents {
432
// These ones are statics
0 commit comments