Method: JSON::Ext::Generator::State#as_json
- Defined in:
- ext/json/ext/generator/generator.c
#as_json ⇒ Object
This string is put at the end of a line that holds a JSON array.
1714 1715 1716 1717 1718 |
# File 'ext/json/ext/generator/generator.c', line 1714
static VALUE cState_as_json(VALUE self)
{
GET_STATE(self);
return state->as_json;
}
|