1
0
Fork 0

Added toString() to forced-public methods list

closure/master
Mike Gerwitz 2011-03-28 19:52:16 -04:00
parent bc8ec4e0be
commit c8e2ebc4ea
1 changed files with 5 additions and 1 deletions

View File

@ -72,7 +72,11 @@ var util = require( __dirname + '/util' ),
*
* @type {Object.<string,boolean}
*/
public_methods = { '__construct': true }
public_methods = {
'__construct': true,
'toString': true,
'__toString': true,
}
;