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

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

Issue 23816009: put js accessor ics behind a flags until fixed (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: nit Created 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/ic.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 534 matching lines...) Expand 10 before | Expand all | Expand 10 after
545 LocalContext env; 545 LocalContext env;
546 v8::HandleScope scope(env->GetIsolate()); 546 v8::HandleScope scope(env->GetIsolate());
547 547
548 v8::Handle<v8::ObjectTemplate> obj = ObjectTemplate::New(); 548 v8::Handle<v8::ObjectTemplate> obj = ObjectTemplate::New();
549 obj->SetNamedPropertyHandler( 549 obj->SetNamedPropertyHandler(
550 JSONStringifyGetter, NULL, NULL, NULL, JSONStringifyEnumerator); 550 JSONStringifyGetter, NULL, NULL, NULL, JSONStringifyEnumerator);
551 env->Global()->Set(v8_str("obj"), obj->NewInstance()); 551 env->Global()->Set(v8_str("obj"), obj->NewInstance());
552 v8::Handle<v8::String> expected = v8_str("{\"regress\":\"crbug-161028\"}"); 552 v8::Handle<v8::String> expected = v8_str("{\"regress\":\"crbug-161028\"}");
553 CHECK(CompileRun("JSON.stringify(obj)")->Equals(expected)); 553 CHECK(CompileRun("JSON.stringify(obj)")->Equals(expected));
554 } 554 }
555
556
557 THREADED_TEST(CrossContextAccess) {
558 LocalContext env;
559 v8::Isolate* isolate = env->GetIsolate();
560 v8::HandleScope scope(isolate);
561 v8::Handle<v8::Function> fun = v8::Function::New(isolate, handle_property);
562 LocalContext switch_context;
563 switch_context->Global()->Set(v8_str("fun"), fun);
564 v8::TryCatch try_catch;
565 CompileRun(
566 "var o = Object.create(null, { n: { get:fun } });"
567 "for (var i = 0; i < 10; i++) o.n;");
568 CHECK(!try_catch.HasCaught());
569 }
OLDNEW
« no previous file with comments | « src/ic.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698