store paths are now arrays, because '.' needed to be a valid path ident. more quoting crap. font is done! well.. it's something. probably not 'done'
This commit is contained in:
parent
515ad7fc9c
commit
6fe94ddfb2
6 changed files with 5859 additions and 5537 deletions
|
|
@ -309,5 +309,5 @@ function prettyPrintPattern(pattern: Pattern): string {
|
|||
}
|
||||
|
||||
function needsQuotes(key: string): boolean {
|
||||
return !/^[a-zA-Z_][a-zA-Z0-9_]*$/.test(key);
|
||||
return key === '_' || !/^[a-zA-Z_][a-zA-Z0-9_]*$/.test(key);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue