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

Unified Diff: test/mjsunit/debug-function-scopes.js

Issue 653603002: Try to fix cross-script global scope (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/message/single-function-literal.js ('k') | test/mjsunit/harmony/debug-function-scopes.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/debug-function-scopes.js
diff --git a/test/mjsunit/debug-function-scopes.js b/test/mjsunit/debug-function-scopes.js
index b51e8b4432b3fb53f585d8f43b7a658eff176994..8e8dc7e7a16b0b10efafd4985287ba910a048c4c 100644
--- a/test/mjsunit/debug-function-scopes.js
+++ b/test/mjsunit/debug-function-scopes.js
@@ -44,11 +44,12 @@ function CheckScope(scope_mirror, scope_expectations, expected_scope_type) {
// A copy of the scope types from mirror-debugger.js.
var ScopeType = { Global: 0,
- Local: 1,
- With: 2,
- Closure: 3,
- Catch: 4,
- Block: 5 };
+ GlobalLexical: 1,
+ Local: 2,
+ With: 3,
+ Closure: 4,
+ Catch: 5,
+ Block: 6 };
var f1 = (function F1(x) {
function F2(y) {
« no previous file with comments | « test/message/single-function-literal.js ('k') | test/mjsunit/harmony/debug-function-scopes.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698