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

Unified Diff: runtime/vm/object.h

Issue 1646543006: Move static before type. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 11 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object.h
diff --git a/runtime/vm/object.h b/runtime/vm/object.h
index 7901ef90128394036afe15505a19d45cc781b154..e8492b93e74bbb6c076d46b828f6686dc5aba71b 100644
--- a/runtime/vm/object.h
+++ b/runtime/vm/object.h
@@ -2525,7 +2525,7 @@ class Function : public Object {
bool IsImplicitStaticClosureFunction() const {
return is_static() && IsImplicitClosureFunction();
}
- bool static IsImplicitStaticClosureFunction(RawFunction* func);
+ static bool IsImplicitStaticClosureFunction(RawFunction* func);
// Returns true if this function represents an implicit instance closure
// function.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698