Cthulhu  0.2.10
Cthulhu compiler collection

a json value More...

#include <json.h>

Collaboration diagram for json_t:

Data Fields

json_kind_t kind
 the kind of json value More...
 
where_t where
 the source location of the json value More...
 
union {
   text_view_t   string
 the string value of this node More...
 
   mpz_t   integer
 the integer value of this node More...
 
   float   real
 the float value of this node More...
 
   bool   boolean
 the boolean value of this node More...
 
   typevec_t   array
 the array value of this node More...
 
   const map_t *   object
 the object value of this node More...
 
}; 
 

Detailed Description

a json value

Definition at line 42 of file json.h.

Field Documentation

◆ 

union { ... }

◆ array

typevec_t json_t::array

the array value of this node

Warning
only valid if kind is eJsonArray

Definition at line 71 of file json.h.

◆ boolean

bool json_t::boolean

the boolean value of this node

Warning
only valid if kind is eJsonBoolean

Definition at line 67 of file json.h.

◆ integer

mpz_t json_t::integer

the integer value of this node

Warning
only valid if kind is eJsonInteger

Definition at line 59 of file json.h.

◆ kind

json_kind_t json_t::kind

the kind of json value

Definition at line 45 of file json.h.

◆ object

const map_t* json_t::object

the object value of this node

Warning
only valid if kind is eJsonObject

Definition at line 75 of file json.h.

◆ real

float json_t::real

the float value of this node

Warning
only valid if kind is eJsonFloat

Definition at line 63 of file json.h.

◆ string

text_view_t json_t::string

the string value of this node

Warning
only valid if kind is eJsonString

Definition at line 55 of file json.h.

◆ where

where_t json_t::where

the source location of the json value

Note
this is only the position of the span, and does not include the source file. it is the user's responsibility to track the file.

Definition at line 50 of file json.h.


The documentation for this struct was generated from the following file: