 Chromium Code Reviews
 Chromium Code Reviews Issue 385004:
  Remove sliced string string type...  (Closed) 
  Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
    
  
    Issue 385004:
  Remove sliced string string type...  (Closed) 
  Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/| Index: src/handles.cc | 
| =================================================================== | 
| --- src/handles.cc (revision 3257) | 
| +++ src/handles.cc (working copy) | 
| @@ -354,7 +354,7 @@ | 
| Handle<String> SubString(Handle<String> str, int start, int end) { | 
| - CALL_HEAP_FUNCTION(str->Slice(start, end), String); | 
| + CALL_HEAP_FUNCTION(str->SubString(start, end), String); | 
| } |