Skip to content
This repository was archived by the owner on Oct 12, 2022. It is now read-only.
/ druntime Public archive
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions benchmark/gcbench/vdparser.extra/vdc/lexer.d
Original file line number Diff line number Diff line change
Expand Up @@ -1026,6 +1026,7 @@ const string[] keywords =
"__LINE__",
"__FUNCTION__",
"__PRETTY_FUNCTION__",
"__MANGLED_FUNCTION__",
"__MODULE__",

"shared",
Expand Down
1 change: 1 addition & 0 deletions benchmark/gcbench/vdparser.extra/vdc/parser/expr.d
Original file line number Diff line number Diff line change
Expand Up @@ -870,6 +870,7 @@ class PrimaryExpression : Expression
case TOK___LINE__:
case TOK___FUNCTION__:
case TOK___PRETTY_FUNCTION__:
case TOK___MANGLED_FUNCTION__:
case TOK___MODULE__:
auto expr = new ast.PrimaryExpression(p.tok);
p.pushNode(expr);
Expand Down