 Chromium Code Reviews
 Chromium Code Reviews Issue 7472034:
  Fix ClassOf check on ARM.  (Closed) 
  Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
    
  
    Issue 7472034:
  Fix ClassOf check on ARM.  (Closed) 
  Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge| Index: src/v8natives.js | 
| diff --git a/src/v8natives.js b/src/v8natives.js | 
| index 76c327c021b13ac76ce23b78fc8f15df6d1ad8d5..be9b297f81315acf7f46ea6f117c518b6ea74cc9 100644 | 
| --- a/src/v8natives.js | 
| +++ b/src/v8natives.js | 
| @@ -209,7 +209,7 @@ function ObjectToString() { | 
| if (IS_UNDEFINED(this) && !IS_UNDETECTABLE(this)) { | 
| return '[object Undefined]'; | 
| } | 
| - if (IS_NULL(this)) return '[object Null]'; | 
| + if (IS_NULL(this)) return '[object Null]'; | 
| return "[object " + %_ClassOf(ToObject(this)) + "]"; | 
| } |