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

Unified Diff: runtime/vm/intermediate_language.cc

Issue 1815733003: Remove recently introduced FunctionType vm class by merging it into class Type. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: address comment Created 4 years, 9 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/flow_graph_type_propagator.cc ('k') | runtime/vm/megamorphic_cache_table.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/intermediate_language.cc
diff --git a/runtime/vm/intermediate_language.cc b/runtime/vm/intermediate_language.cc
index 4f4032fce706c7db24ec99c1057b89e3c0d63174..4b55595497f74571cdda9cbfa602b4d23439f11c 100644
--- a/runtime/vm/intermediate_language.cc
+++ b/runtime/vm/intermediate_language.cc
@@ -3714,9 +3714,9 @@ intptr_t MergedMathInstr::OutputIndexOf(Token::Kind token) {
void NativeCallInstr::SetupNative() {
- Zone* Z = Thread::Current()->zone();
- const Class& cls = Class::Handle(Z, function().Owner());
- const Library& library = Library::Handle(Z, cls.library());
+ Zone* zone = Thread::Current()->zone();
+ const Class& cls = Class::Handle(zone, function().Owner());
+ const Library& library = Library::Handle(zone, cls.library());
const int num_params =
NativeArguments::ParameterCountForResolution(function());
bool auto_setup_scope = true;
« no previous file with comments | « runtime/vm/flow_graph_type_propagator.cc ('k') | runtime/vm/megamorphic_cache_table.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698