Home
last modified time | relevance | path

Searched refs:JSON_TYPE (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/
H A Djson.d42 if (code.type() == JSON_TYPE.INTEGER)
85 enum JSON_TYPE : byte enum
116 private JSON_TYPE type_tag;
121 @property JSON_TYPE type() const pure nothrow @safe @nogc in type()
130 assert(j.type == JSON_TYPE.OBJECT);
131 assert(j["language"].type == JSON_TYPE.STRING);
141 enforce!JSONException(type == JSON_TYPE.STRING, in str()
171 enforce!JSONException(type == JSON_TYPE.INTEGER, in inout()
189 enforce!JSONException(type == JSON_TYPE.UINTEGER, in inout()
208 enforce!JSONException(type == JSON_TYPE.FLOAT, in inout()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/
H A Djson.d113 deprecated("Use JSONType and the new enum member names") alias JSON_TYPE = JSONType;