We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f713bd3 commit 5dfe3dcCopy full SHA for 5dfe3dc
compiler/src/dmd/tokens.d
@@ -55,6 +55,7 @@ enum TOK : ubyte
55
typeof_,
56
pragma_,
57
typeid_,
58
+ rvalue,
59
comment,
60
61
// Operators
@@ -314,6 +315,7 @@ enum EXP : ubyte
314
315
declaration,
316
dSymbol,
317
318
319
uadd,
320
remove,
321
newAnonymousClass,
@@ -460,6 +462,7 @@ private immutable TOK[] keywords =
460
462
TOK.pragma_,
461
463
TOK.typeof_,
464
TOK.typeid_,
465
+ TOK.rvalue,
466
TOK.template_,
467
TOK.void_,
468
TOK.int8,
@@ -680,6 +683,7 @@ extern (C++) struct Token
680
683
TOK.pragma_: "pragma",
681
684
TOK.typeof_: "typeof",
682
685
TOK.typeid_: "typeid",
686
+ TOK.rvalue: "__rvalue",
687
TOK.template_: "template",
688
TOK.void_: "void",
689
TOK.int8: "byte",
0 commit comments