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

Side by Side Diff: test/cctest/test-api.cc

Issue 1295433002: [runtime] Remove useless IN builtin. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 4 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
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 19280 matching lines...) Expand 10 before | Expand all | Expand 10 after
19291 CheckCorrectThrow("JSON.stringify(other)"); 19291 CheckCorrectThrow("JSON.stringify(other)");
19292 CheckCorrectThrow("has_own_property(other, 'x')"); 19292 CheckCorrectThrow("has_own_property(other, 'x')");
19293 CheckCorrectThrow("%GetProperty(other, 'x')"); 19293 CheckCorrectThrow("%GetProperty(other, 'x')");
19294 CheckCorrectThrow("%SetProperty(other, 'x', 'foo', 0)"); 19294 CheckCorrectThrow("%SetProperty(other, 'x', 'foo', 0)");
19295 CheckCorrectThrow("%AddNamedProperty(other, 'x', 'foo', 1)"); 19295 CheckCorrectThrow("%AddNamedProperty(other, 'x', 'foo', 1)");
19296 CheckCorrectThrow("%DeleteProperty_Sloppy(other, 'x')"); 19296 CheckCorrectThrow("%DeleteProperty_Sloppy(other, 'x')");
19297 CheckCorrectThrow("%DeleteProperty_Strict(other, 'x')"); 19297 CheckCorrectThrow("%DeleteProperty_Strict(other, 'x')");
19298 CheckCorrectThrow("%DeleteProperty_Sloppy(other, '1')"); 19298 CheckCorrectThrow("%DeleteProperty_Sloppy(other, '1')");
19299 CheckCorrectThrow("%DeleteProperty_Strict(other, '1')"); 19299 CheckCorrectThrow("%DeleteProperty_Strict(other, '1')");
19300 CheckCorrectThrow("%HasOwnProperty(other, 'x')"); 19300 CheckCorrectThrow("%HasOwnProperty(other, 'x')");
19301 CheckCorrectThrow("%HasProperty(other, 'x')"); 19301 CheckCorrectThrow("%HasProperty('x', other)");
19302 CheckCorrectThrow("%HasElement(other, 1)");
19303 CheckCorrectThrow("%IsPropertyEnumerable(other, 'x')"); 19302 CheckCorrectThrow("%IsPropertyEnumerable(other, 'x')");
19304 // PROPERTY_ATTRIBUTES_NONE = 0 19303 // PROPERTY_ATTRIBUTES_NONE = 0
19305 CheckCorrectThrow("%DefineAccessorPropertyUnchecked(" 19304 CheckCorrectThrow("%DefineAccessorPropertyUnchecked("
19306 "other, 'x', null, null, 1)"); 19305 "other, 'x', null, null, 1)");
19307 19306
19308 // Reset the failed access check callback so it does not influence 19307 // Reset the failed access check callback so it does not influence
19309 // the other tests. 19308 // the other tests.
19310 v8::V8::SetFailedAccessCheckCallbackFunction(NULL); 19309 v8::V8::SetFailedAccessCheckCallbackFunction(NULL);
19311 } 19310 }
19312 19311
(...skipping 2507 matching lines...) Expand 10 before | Expand all | Expand 10 after
21820 CHECK(try_catch.HasTerminated()); 21819 CHECK(try_catch.HasTerminated());
21821 } 21820 }
21822 21821
21823 21822
21824 TEST(EstimatedContextSize) { 21823 TEST(EstimatedContextSize) {
21825 v8::Isolate* isolate = CcTest::isolate(); 21824 v8::Isolate* isolate = CcTest::isolate();
21826 v8::HandleScope scope(isolate); 21825 v8::HandleScope scope(isolate);
21827 LocalContext env; 21826 LocalContext env;
21828 CHECK(50000 < env->EstimatedSize()); 21827 CHECK(50000 < env->EstimatedSize());
21829 } 21828 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698