mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
run v fmt -w vlib/v/ast/ast.v
This commit is contained in:
parent
834dba8451
commit
7abe91daf5
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue