aboutsummaryrefslogtreecommitdiff
path: root/core/encoding/json/tokenizer.odin
Commit message (Collapse)AuthorAgeFilesLines
* Fix typo in private functionEly Alon2025-04-281-2/+2
|
* Fix #4537gingerBill2024-12-051-0/+1
|
* Fix #4549gingerBill2024-12-021-1/+1
|
* Update numerous package declaration namesgingerBill2024-04-181-1/+1
|
* Fix for skip_alphanum in JSON tokenizer not checking if first character is ↵Karl Zylinski2023-04-051-1/+2
| | | | non-alphanum. This broke any single-character key when using SJSON specification in combination with not using quoted strings.
* Improve `json.marshal` error handling for `io.Writer`; Add docs for the ↵gingerBill2021-09-291-5/+39
| | | | different JSON specifications
* Support `json.Specification.MJSON`gingerBill2021-09-281-21/+59
| | | | https://bitsquid.blogspot.com/2009/10/simplified-json-notation.html
* Add `json.unmarshal`gingerBill2021-09-251-1/+1
|
* Remove unneeded semicolons from the core librarygingerBill2021-08-311-152/+152
|
* Fix typogingerBill2021-08-151-0/+1
|
* [Breaking] Change the layout `json.Value` to be a `union` rather than a ↵gingerBill2021-08-081-0/+6
| | | | `struct` of a `json.Pos` and the union
* Core library clean up: Make range expressions more consistent and replace ↵gingerBill2021-06-141-8/+8
| | | | uses of `..` with `..=`
* Remove usage of `do` in core librarygingerBill2020-09-231-6/+14
|
* Added option to parse number as integer, disabled by defaultjockus2020-09-151-3/+4
|
* Commit fixgingerBill2020-06-161-45/+47
|
* Fix core library for the new procedure parameter addressing modegingerBill2019-07-151-2/+4
|
* Fix som JSON parsing bugs.Kevin Watters2019-04-061-18/+20
| | | | | - Single digit integer keys `{"a": 5}` ` Negative float keys `{"b": -42.0}`
* Fix some -vet warnings; change import to core:math/bitsKevin Watters2019-03-251-2/+2
|
* Make encoding/json use []byte rather than stringgingerBill2019-01-071-13/+14
|
* package json; JSON5 supportgingerBill2019-01-061-18/+164
|
* Begin work on `package json`gingerBill2019-01-061-0/+322