mirror of
https://github.com/Noratrieb/riverdelta.git
synced 2026-01-16 01:15:03 +01:00
struct literals
This commit is contained in:
parent
b52abed441
commit
39a995b765
6 changed files with 149 additions and 17 deletions
|
|
@ -10,6 +10,8 @@ export type DatalessToken =
|
|||
| "type"
|
||||
| "("
|
||||
| ")"
|
||||
| "{"
|
||||
| "}"
|
||||
| "["
|
||||
| "]"
|
||||
| ";"
|
||||
|
|
@ -54,6 +56,8 @@ export type BaseToken = { kind: Token["kind"] };
|
|||
const SINGLE_PUNCT: string[] = [
|
||||
"(",
|
||||
")",
|
||||
"}",
|
||||
"{",
|
||||
"[",
|
||||
"]",
|
||||
";",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue