summaryrefslogtreecommitdiff
path: root/src/json_test.c
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.0.0216: decoding js style json may failv8.0.0216Bram Moolenaar2017-01-221-0/+6
| | | | | | Problem: When decoding JSON with a JS style object the JSON test may use a NULL pointer. (Coverity) Solution: Check for a NULL pointer.
* patch 8.0.0171: JS style JSON does not support single quotesv8.0.0171Bram Moolenaar2017-01-111-1/+1
| | | | | Problem: JS style JSON does not support single quotes. Solution: Allow for single quotes. (Yasuhiro Matsumoto, closes #1371)
* patch 7.4.2293v7.4.2293Bram Moolenaar2016-08-291-1/+1
| | | | | Problem: Modelines in source code are inconsistant. Solution: Use the same line in most files. Add 'noet'. (Naruhiko Nishino)
* patch 7.4.1279v7.4.1279Bram Moolenaar2016-02-071-49/+49
| | | | | | Problem: jsonencode() is not producing strict JSON. Solution: Add jsencode() and jsdecode(). Make jsonencode() and jsondecode() strict.
* patch 7.4.1242v7.4.1242Bram Moolenaar2016-02-021-0/+4
| | | | | Problem: json_test fails without the eval feature. Solution: Add #ifdef.
* patch 7.4.1238v7.4.1238Bram Moolenaar2016-02-021-0/+193
Problem: Can't handle two messages right after each other. Solution: Find the end of the JSON. Read more when incomplete. Add a C test for the JSON decoding.