 Chromium Code Reviews
 Chromium Code Reviews Issue 9415010:
  Make built-ins strict mode conforming, and support a --use-strict flag.  (Closed) 
  Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
    
  
    Issue 9415010:
  Make built-ins strict mode conforming, and support a --use-strict flag.  (Closed) 
  Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge| Index: src/string.js | 
| diff --git a/src/string.js b/src/string.js | 
| index 2d6896120e5c7c2633fd550a085b1624eb62ada6..4c2a6a91a798a80e28f8f1e7f9aa1f5f23d8ed2b 100644 | 
| --- a/src/string.js | 
| +++ b/src/string.js | 
| @@ -28,8 +28,8 @@ | 
| // This file relies on the fact that the following declaration has been made | 
| // in runtime.js: | 
| -// const $String = global.String; | 
| -// const $NaN = 0/0; | 
| +// var $String = global.String; | 
| +// var $NaN = 0/0; | 
| // Set the String function and constructor. |