From 12de7cff0490021bd01eac1b4cd1183ca42c7148 Mon Sep 17 00:00:00 2001 From: Juan de Bruin Date: Sun, 2 Jun 2024 00:44:12 +0200 Subject: [PATCH] ast: add comment showing what `blank_ident` represents (#21631) --- vlib/v/ast/ast.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/v/ast/ast.v b/vlib/v/ast/ast.v index 3e38beff303c98..ac2f6df0407ff2 100644 --- a/vlib/v/ast/ast.v +++ b/vlib/v/ast/ast.v @@ -988,7 +988,7 @@ pub type IdentInfo = IdentFn | IdentVar pub enum IdentKind { unresolved - blank_ident + blank_ident // discard identifier, `_` in `_ := 1` variable constant global