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

Unified Diff: runtime/vm/object.cc

Issue 2237113003: Don't mark closurized natives as natives. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | runtime/vm/precompiler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object.cc
diff --git a/runtime/vm/object.cc b/runtime/vm/object.cc
index 0886a30ee2dca5a75bbf024e7550dc68db4a360f..138ae18f5928602cdad3846ab0fa20e86528225a 100644
--- a/runtime/vm/object.cc
+++ b/runtime/vm/object.cc
@@ -6582,7 +6582,7 @@ RawFunction* Function::NewClosureFunction(const String& name,
/* is_const = */ false,
/* is_abstract = */ false,
/* is_external = */ false,
- parent.is_native(),
+ /* is_native = */ false,
parent_owner,
token_pos));
result.set_parent_function(parent);
« no previous file with comments | « no previous file | runtime/vm/precompiler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698