run v fmt -w vlib/v/ast/ast.v

This commit is contained in:
Delyan Angelov 2025-08-30 19:55:15 +03:00
parent 834dba8451
commit 7abe91daf5
No known key found for this signature in database
GPG key ID: 66886C0F12D595ED

View file

@ -1019,9 +1019,9 @@ pub mut:
imports []Import // all the imports
auto_imports []string // imports that were implicitly added
used_imports []string
implied_imports []string // imports that the user's code uses but omitted to import explicitly, used by `vfmt`
embedded_files []EmbeddedFile // list of files to embed in the binary
imported_symbols map[string]string // used for `import {symbol}`, it maps symbol => module.symbol
implied_imports []string // imports that the user's code uses but omitted to import explicitly, used by `vfmt`
embedded_files []EmbeddedFile // list of files to embed in the binary
imported_symbols map[string]string // used for `import {symbol}`, it maps symbol => module.symbol
imported_symbols_trie token.KeywordsMatcherTrie // constructed from imported_symbols, to accelerate presense checks
imported_symbols_used map[string]bool
errors []errors.Error // all the checker errors in the file