Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(401)

Side by Side Diff: src/apinatives.js

Issue 279543002: Move more builtin files to strict mode. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | src/array-iterator.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 "use strict";
6
5 // This file contains infrastructure used by the API. See 7 // This file contains infrastructure used by the API. See
6 // v8natives.js for an explanation of these files are processed and 8 // v8natives.js for an explanation of these files are processed and
7 // loaded. 9 // loaded.
8 10
9 11
10 function CreateDate(time) { 12 function CreateDate(time) {
11 var date = new $Date(); 13 var date = new $Date();
12 date.setTime(time); 14 date.setTime(time);
13 return date; 15 return date;
14 } 16 }
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 obj, name, getter, setter, attribute, access_control); 108 obj, name, getter, setter, attribute, access_control);
107 } else { 109 } else {
108 throw "Bad properties array"; 110 throw "Bad properties array";
109 } 111 }
110 i += length + 1; 112 i += length + 1;
111 } 113 }
112 } finally { 114 } finally {
113 if (requires_access_checks) %EnableAccessChecks(obj); 115 if (requires_access_checks) %EnableAccessChecks(obj);
114 } 116 }
115 } 117 }
OLDNEW
« no previous file with comments | « no previous file | src/array-iterator.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698