turned documentation for JSON methods back on

This commit is contained in:
zumbrunn 2007-12-13 19:03:38 +00:00
parent add43975fc
commit f3bfee3a16

View file

@ -145,7 +145,6 @@
/** /**
* This method produces a JSON text from an object. * This method produces a JSON text from an object.
* The object must not contain any cyclical references. * The object must not contain any cyclical references.
* @ignore
*/ */
Object.prototype.toJSON = function () { Object.prototype.toJSON = function () {
return s.object(this); return s.object(this);
@ -154,7 +153,6 @@
/** /**
* This method produces a JSON text from an array. * This method produces a JSON text from an array.
* The array must not contain any cyclical references. * The array must not contain any cyclical references.
* @ignore
*/ */
Array.prototype.toJSON = function () { Array.prototype.toJSON = function () {
return s.array(this); return s.array(this);
@ -169,7 +167,6 @@
/** /**
* This method parses a JSON text to produce an object or * This method parses a JSON text to produce an object or
* array. It will return false if there is an error. * array. It will return false if there is an error.
* @ignore
*/ */
String.prototype.parseJSON = function () { String.prototype.parseJSON = function () {
try { try {