 Chromium Code Reviews
 Chromium Code Reviews Issue 210953005:
  Clean up some "GetProperty" methods/functions.  (Closed) 
  Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
    
  
    Issue 210953005:
  Clean up some "GetProperty" methods/functions.  (Closed) 
  Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge| Index: src/execution.cc | 
| diff --git a/src/execution.cc b/src/execution.cc | 
| index 7442d1732fb42c1f6db538000c71730f6562b31a..fccb4bf3341c2a21b372cf16bef171c093da06d7 100644 | 
| --- a/src/execution.cc | 
| +++ b/src/execution.cc | 
| @@ -783,8 +783,8 @@ Handle<Object> Execution::CharAt(Handle<String> string, uint32_t index) { | 
| return factory->undefined_value(); | 
| } | 
| - Handle<Object> char_at = GetProperty( | 
| - isolate, isolate->js_builtins_object(), factory->char_at_string()); | 
| + Handle<Object> char_at = Object::GetProperty( | 
| 
Igor Sheludko
2014/03/26 18:37:31
We don't need all the checks done by Runtime::GetO
 
Yang
2014/03/28 09:56:58
Right.
 | 
| + isolate->js_builtins_object(), factory->char_at_string()); | 
| if (!char_at->IsJSFunction()) { | 
| return factory->undefined_value(); | 
| } |