aboutsummaryrefslogtreecommitdiff
path: root/core/encoding/json
Commit message (Collapse)AuthorAgeFilesLines
...
* Add `json.unmarshal`gingerBill2021-09-255-21/+605
|
* Strip even more semicolons if followed by a `}` or `)` on the same linegingerBill2021-08-311-5/+5
|
* Remove unneeded semicolons from the core librarygingerBill2021-08-315-560/+560
|
* Add multi pointers to coregingerBill2021-08-211-0/+3
|
* Update package encoding/json for `or_return`gingerBill2021-08-151-24/+6
|
* Fix typogingerBill2021-08-151-0/+1
|
* [Breaking] Change the layout `json.Value` to be a `union` rather than a ↵gingerBill2021-08-084-103/+83
| | | | `struct` of a `json.Pos` and the union
* Core library clean up: Make range expressions more consistent and replace ↵gingerBill2021-06-142-14/+14
| | | | uses of `..` with `..=`
* Implement `f16` functionalitygingerBill2021-04-011-0/+1
|
* Make trailing comma usage consistentgingerBill2021-03-131-1/+1
|
* Remove `#opaque` typesgingerBill2021-02-231-3/+0
|
* Remove `bit_field` in type info, runtime, and general core librarygingerBill2021-02-191-28/+0
|
* vet all core packagesgingerBill2021-01-091-1/+0
|
* Integrate `package io` into core librarygingerBill2020-12-031-2/+3
|
* Remove unused variablegingerBill2020-11-251-2/+0
|
* Update package json for new map layout; Correct llvm-api includes for *nixgingerBill2020-11-251-4/+4
|
* Remove usage of `do` in core librarygingerBill2020-09-233-16/+32
|
* Added parse_integers optional to validationjockus2020-09-151-2/+2
|
* Added option to parse number as integer, disabled by defaultjockus2020-09-153-8/+10
|
* [REFLECTION BREAKING] Modify the internals of the `map` type to increase ↵gingerBill2020-09-071-5/+1
| | | | performance
* Commit fixgingerBill2020-06-165-119/+139
|
* Fix `strconv.parse_` usage across other packagesgingerBill2020-05-091-2/+4
|
* Implement `#complete switch` by default, replace with `#partial switch` #511gingerBill2019-12-224-14/+13
|
* Make the `string` type elements "immutable", akin to `char const *` in CgingerBill2019-12-012-9/+9
| | | | Allows for extra security and optimization benefits
* Change implicit semicolon rules for record types within procedure bodies; ↵gingerBill2019-10-061-4/+3
| | | | Update `package odin/*`
* Remove `package types` and merge with `package reflect`gingerBill2019-08-131-2/+2
|
* Fix core library for the new procedure parameter addressing modegingerBill2019-07-152-4/+6
|
* Make core library use `a..<b` rather than doing `a..b-1`gingerBill2019-05-281-4/+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-253-5/+3
|
* Fix typo in json/parser.odingingerBill2019-01-141-1/+1
|
* Update `package json` parser to store the end position on the valuesgingerBill2019-01-142-3/+15
|
* Make encoding/json use []byte rather than stringgingerBill2019-01-074-18/+67
|
* json.marshalgingerBill2019-01-061-0/+283
|
* Support NaN and Infinity for JSON5gingerBill2019-01-062-14/+38
|
* package json; JSON5 supportgingerBill2019-01-064-48/+319
|
* Add json.is_valid filegingerBill2019-01-061-0/+98
|
* Add json.is_validgingerBill2019-01-061-2/+3
|
* Begin work on `package json`gingerBill2019-01-063-0/+715