comparison src/json_test.c @ 10563:bac9cec298ed v8.0.0171

patch 8.0.0171: JS style JSON does not support single quotes commit https://github.com/vim/vim/commit/ee142add229cbcd58bc76d59f23e02517df14379 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jan 11 21:50:08 2017 +0100 patch 8.0.0171: JS style JSON does not support single quotes Problem: JS style JSON does not support single quotes. Solution: Allow for single quotes. (Yasuhiro Matsumoto, closes https://github.com/vim/vim/issues/1371)
author Christian Brabandt <cb@256bit.org>
date Wed, 11 Jan 2017 22:00:04 +0100
parents 4aead6a9b7a9
children bb4360d64eb2
comparison
equal deleted inserted replaced
10562:9b1ca542ca91 10563:bac9cec298ed
179 reader.js_fill = fill_from_cookie; 179 reader.js_fill = fill_from_cookie;
180 reader.js_used = 0; 180 reader.js_used = 0;
181 reader.js_buf = (char_u *)" \"foo"; 181 reader.js_buf = (char_u *)" \"foo";
182 reader.js_end = reader.js_buf + STRLEN(reader.js_buf); 182 reader.js_end = reader.js_buf + STRLEN(reader.js_buf);
183 reader.js_cookie = " \"foobar\" "; 183 reader.js_cookie = " \"foobar\" ";
184 assert(json_decode_string(&reader, NULL) == OK); 184 assert(json_decode_string(&reader, NULL, '"') == OK);
185 } 185 }
186 #endif 186 #endif
187 187
188 int 188 int
189 main(void) 189 main(void)