pike.git
/
src
/
modules
/
JSON
/
JSON.pmod.in
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/modules/JSON/JSON.pmod.in:1:
-
// $Id: JSON.pmod.in,v 1.
1
2010/05/28
17
:
39
:
15
mast Exp $
+
// $Id: JSON.pmod.in,v 1.
2
2010/05/28
18
:
38
:
35
mast Exp $
-
//!
@appears Standards.JSON module
-
//!
-
//! Tools for handling the JSON structured data format. See
-
//! @url{http://www.json.org/@} and RFC 4627.
+
#pike
__REAL_VERSION__
-
+
//! @ignore
#if !constant (@module@) constant this_program_does_not_exist = 1; #else
-
-
//! @ignore
+
inherit @module@; //! @endignore
-
+
//! @appears Standards.JSON module
+
//!
+
//! Tools for handling the JSON structured data format. See
+
//! @url{http://www.json.org/@} and RFC 4627.
+
True true = True(); False false = False(); Null null = Null(); //! Objects representing the three JSON literals @expr{true@}, //! @expr{false@} and @expr{null@}. @expr{true@} and @expr{false@} //! should behave as expected in boolean contexts. class True //! Type for the @[true] object. {