parser: minor optimization of `expr()` (#7575)
parent
80a9d08505
commit
1558bd1658
|
@ -22,7 +22,7 @@ pub fn (mut p Parser) expr(precedence int) ast.Expr {
|
||||||
// Prefix
|
// Prefix
|
||||||
match p.tok.kind {
|
match p.tok.kind {
|
||||||
.key_mut, .key_shared, .key_atomic, .key_static {
|
.key_mut, .key_shared, .key_atomic, .key_static {
|
||||||
node = p.name_expr()
|
node = p.parse_ident(table.Language.v)
|
||||||
p.is_stmt_ident = is_stmt_ident
|
p.is_stmt_ident = is_stmt_ident
|
||||||
}
|
}
|
||||||
.name {
|
.name {
|
||||||
|
|
Loading…
Reference in New Issue