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

Unified Diff: test/mjsunit/migrations.js

Issue 1217893012: Remove deprecated v8::Object::TurnOnAccessCheck() from the V8 API. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Deoptimizer::DeoptimizeGlobalObject() removed Created 5 years, 6 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/cctest/test-api-interceptors.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/migrations.js
diff --git a/test/mjsunit/migrations.js b/test/mjsunit/migrations.js
index 6a2ea64a7a0fe1c1325eb9f79c0c133a814e958f..288bc610312edc2c6ae7eeaf4cabbeb5d794463e 100644
--- a/test/mjsunit/migrations.js
+++ b/test/mjsunit/migrations.js
@@ -278,18 +278,6 @@ var migrations = [
migr: function(o, i) { Object.observe(o, function(){}); },
},
{
- name: "%EnableAccessChecks",
- migr: function(o, i) {
- if (typeof (o) !== 'function') %EnableAccessChecks(o);
- },
- },
- {
- name: "%DisableAccessChecks",
- migr: function(o, i) {
- if ((typeof (o) !== 'function') && (o !== global)) %DisableAccessChecks(o);
- },
- },
- {
name: "seal",
migr: function(o, i) { Object.seal(o); },
},
« no previous file with comments | « test/cctest/test-api-interceptors.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698