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

Unified Diff: test/mjsunit/runtime-gen/loadfromsuper.js

Issue 527963002: Implement loads and calls from 'super' (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Minor changes Created 6 years, 3 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
Index: test/mjsunit/runtime-gen/loadfromsuper.js
diff --git a/test/mjsunit/runtime-gen/lookupaccessor.js b/test/mjsunit/runtime-gen/loadfromsuper.js
similarity index 74%
copy from test/mjsunit/runtime-gen/lookupaccessor.js
copy to test/mjsunit/runtime-gen/loadfromsuper.js
index 89f40d76c9ea6ef19c39842a4ae30c9eab909ded..25f4ff9ac8d379921f8a6fe843630311c5dd3f61 100644
--- a/test/mjsunit/runtime-gen/lookupaccessor.js
+++ b/test/mjsunit/runtime-gen/loadfromsuper.js
@@ -1,7 +1,7 @@
// Copyright 2014 the V8 project authors. All rights reserved.
// AUTO-GENERATED BY tools/generate-runtime-tests.py, DO NOT MODIFY
// Flags: --allow-natives-syntax --harmony --harmony-proxies
+var _home_object = new Object();
var _receiver = new Object();
var _name = "name";
-var _flag = 1;
-%LookupAccessor(_receiver, _name, _flag);
+%LoadFromSuper(_home_object, _receiver, _name);

Powered by Google App Engine
This is Rietveld 408576698