17 lines
318 B
Forth
17 lines
318 B
Forth
|
namespace Sanchime.Json
|
||
|
|
||
|
type Token =
|
||
|
| Whitespace
|
||
|
| Symbol of char
|
||
|
| StringLiteral of string
|
||
|
| NumberLiteral of float
|
||
|
| BooleanLiteral of bool
|
||
|
|
||
|
type Json =
|
||
|
| String of string
|
||
|
| Array of Json list
|
||
|
| Boolean of bool
|
||
|
| Number of float
|
||
|
| Object of (string * Json) list
|
||
|
| Null
|