Re: [PATCH 02/10] Add JSON implementation

2018-05-30 Thread Eric Gallager
On 5/30/18, David Malcolm wrote: > On Wed, 2018-05-30 at 13:25 -0400, Eric Gallager wrote: >> On 5/29/18, David Malcolm wrote: >> > This patch is the JSON patch I posted last year; >> > it adds support to gcc for reading and writing JSON, >> > based on DOM-like trees of json::value instances. >>

Re: [PATCH 02/10] Add JSON implementation

2018-05-30 Thread David Malcolm
On Wed, 2018-05-30 at 13:25 -0400, Eric Gallager wrote: > On 5/29/18, David Malcolm wrote: > > This patch is the JSON patch I posted last year; > > it adds support to gcc for reading and writing JSON, > > based on DOM-like trees of json::value instances. > > > > This is overkill for what's needed

Re: [PATCH 02/10] Add JSON implementation

2018-05-30 Thread Eric Gallager
On 5/29/18, David Malcolm wrote: > This patch is the JSON patch I posted last year; > it adds support to gcc for reading and writing JSON, > based on DOM-like trees of json::value instances. > > This is overkill for what's needed by the rest of the > patch kit (which just needs to be able to write

[PATCH 02/10] Add JSON implementation

2018-05-29 Thread David Malcolm
This patch is the JSON patch I posted last year; it adds support to gcc for reading and writing JSON, based on DOM-like trees of json::value instances. This is overkill for what's needed by the rest of the patch kit (which just needs to be able to write JSON), but this code already existed, so I'm