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

Side by Side Diff: test/cctest/test-func-name-inference.cc

Issue 23534067: bulk replace Isolate::Current in tests (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: 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 | « test/cctest/test-disasm-x64.cc ('k') | test/cctest/test-global-handles.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 using ::v8::internal::Runtime; 44 using ::v8::internal::Runtime;
45 using ::v8::internal::Script; 45 using ::v8::internal::Script;
46 using ::v8::internal::SmartArrayPointer; 46 using ::v8::internal::SmartArrayPointer;
47 using ::v8::internal::SharedFunctionInfo; 47 using ::v8::internal::SharedFunctionInfo;
48 using ::v8::internal::String; 48 using ::v8::internal::String;
49 49
50 50
51 static void CheckFunctionName(v8::Handle<v8::Script> script, 51 static void CheckFunctionName(v8::Handle<v8::Script> script,
52 const char* func_pos_src, 52 const char* func_pos_src,
53 const char* ref_inferred_name) { 53 const char* ref_inferred_name) {
54 Isolate* isolate = Isolate::Current(); 54 Isolate* isolate = CcTest::i_isolate();
55 Factory* factory = isolate->factory(); 55 Factory* factory = isolate->factory();
56 56
57 // Get script source. 57 // Get script source.
58 Handle<Object> obj = v8::Utils::OpenHandle(*script); 58 Handle<Object> obj = v8::Utils::OpenHandle(*script);
59 Handle<SharedFunctionInfo> shared_function; 59 Handle<SharedFunctionInfo> shared_function;
60 if (obj->IsSharedFunctionInfo()) { 60 if (obj->IsSharedFunctionInfo()) {
61 shared_function = 61 shared_function =
62 Handle<SharedFunctionInfo>(SharedFunctionInfo::cast(*obj)); 62 Handle<SharedFunctionInfo>(SharedFunctionInfo::cast(*obj));
63 } else { 63 } else {
64 shared_function = 64 shared_function =
(...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after
475 " };\n" 475 " };\n"
476 " var foo = 10;\n" 476 " var foo = 10;\n"
477 " function f() {\n" 477 " function f() {\n"
478 " return wrapCode();\n" 478 " return wrapCode();\n"
479 " }\n" 479 " }\n"
480 " this.ref = f;\n" 480 " this.ref = f;\n"
481 "})()"); 481 "})()");
482 script->Run(); 482 script->Run();
483 CheckFunctionName(script, "return 2012", ""); 483 CheckFunctionName(script, "return 2012", "");
484 } 484 }
OLDNEW
« no previous file with comments | « test/cctest/test-disasm-x64.cc ('k') | test/cctest/test-global-handles.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698