Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
--HG--
branch : com.mozilla.es4.smlnj
extra : convert_revision : 8e97a6ca9dbfcf99917cf0fa1ea14ef3a7563a8d
  • Loading branch information
[email protected] committed Apr 27, 2007
1 parent 2153538 commit 982a53b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions builtins/Object.es
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ package

/* E262-3 15.2.4.2: Object.prototype.toString */
prototype function toString()
private::toString(this);
Object.private::toString(this);

intrinsic function toString() : string
private::toString(this);
Object.private::toString(this);

private static function toString(obj) : string
"[object " + magic::getClassName(obj) + "]";
Expand Down

0 comments on commit 982a53b

Please sign in to comment.