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

Unified Diff: test/mjsunit/property-load-across-eval.js

Issue 8888006: Make more JS files beter match the coding standard. Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Address review comments Created 9 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/mjsunit/override-read-only-property.js ('k') | test/mjsunit/property-object-key.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/property-load-across-eval.js
diff --git a/test/mjsunit/property-load-across-eval.js b/test/mjsunit/property-load-across-eval.js
index 98b621e7922588acf0e5a73af91dc487a0ac2c6c..ae1bddfb5256d3888a7069cc2d593fe009af3481 100644
--- a/test/mjsunit/property-load-across-eval.js
+++ b/test/mjsunit/property-load-across-eval.js
@@ -30,14 +30,14 @@
var x = 1;
function global_function() { return 'global'; }
const const_uninitialized;
-const const_initialized = function() { return "const_global"; }
+const const_initialized = function() { return "const_global"; };
// Test loading across an eval call that does not shadow variables.
function testNoShadowing() {
var y = 2;
function local_function() { return 'local'; }
const local_const_uninitialized;
- const local_const_initialized = function() { return "const_local"; }
+ const local_const_initialized = function() { return "const_local"; };
function f() {
eval('1');
assertEquals(1, x);
« no previous file with comments | « test/mjsunit/override-read-only-property.js ('k') | test/mjsunit/property-object-key.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698