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

Unified Diff: runtime/vm/stub_code_x64_test.cc

Issue 1870343002: - Refactor Symbol allocation to expect a thread parameter. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Address review feedback. Created 4 years, 8 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 | « runtime/vm/stub_code_mips_test.cc ('k') | runtime/vm/symbols.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/stub_code_x64_test.cc
diff --git a/runtime/vm/stub_code_x64_test.cc b/runtime/vm/stub_code_x64_test.cc
index b320f60d72fe0fada166e6fc4c554850912db501..6b9b2afca6921771b4168661ce089c90fc43d9f1 100644
--- a/runtime/vm/stub_code_x64_test.cc
+++ b/runtime/vm/stub_code_x64_test.cc
@@ -20,13 +20,15 @@
namespace dart {
static Function* CreateFunction(const char* name) {
- const String& class_name = String::Handle(Symbols::New("ownerClass"));
+ const String& class_name = String::Handle(Symbols::New(Thread::Current(),
+ "ownerClass"));
const Script& script = Script::Handle();
const Class& owner_class = Class::Handle(
Class::New(class_name, script, TokenPosition::kNoSource));
const Library& lib = Library::Handle(Library::New(class_name));
owner_class.set_library(lib);
- const String& function_name = String::ZoneHandle(Symbols::New(name));
+ const String& function_name = String::ZoneHandle(
+ Symbols::New(Thread::Current(), name));
Function& function = Function::ZoneHandle(
Function::New(function_name, RawFunction::kRegularFunction,
true, false, false, false, false, owner_class,
« no previous file with comments | « runtime/vm/stub_code_mips_test.cc ('k') | runtime/vm/symbols.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698