mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
all: unwrap const() blocks
This commit is contained in:
parent
399af6768d
commit
f09826e928
436 changed files with 10448 additions and 11207 deletions
|
@ -10,12 +10,10 @@ import toml.util
|
|||
import toml.token
|
||||
import toml.scanner
|
||||
|
||||
pub const (
|
||||
all_formatting = [token.Kind.whitespace, .tab, .cr, .nl]
|
||||
space_formatting = [token.Kind.whitespace, .tab]
|
||||
keys_and_space_formatting = [token.Kind.whitespace, .tab, .minus, .bare, .quoted, .boolean,
|
||||
.number, .underscore]
|
||||
)
|
||||
pub const all_formatting = [token.Kind.whitespace, .tab, .cr, .nl]
|
||||
pub const space_formatting = [token.Kind.whitespace, .tab]
|
||||
pub const keys_and_space_formatting = [token.Kind.whitespace, .tab, .minus, .bare, .quoted, .boolean,
|
||||
.number, .underscore]
|
||||
|
||||
type DottedKey = []string
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue