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

Unified Diff: runtime/vm/object.h

Issue 2759393005: Cleanup change. (Closed)
Patch Set: Created 3 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/jit_optimizer.cc ('k') | runtime/vm/object.cc » ('j') | 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 a413cd8de7990042ecf128d8545361c41563b108..2239799140a8983cd3d7bf3ae7e781314fe23db2 100644
--- a/runtime/vm/object.h
+++ b/runtime/vm/object.h
@@ -2199,7 +2199,8 @@ class Function : public Object {
// type parameters of class C, the owner of the function.
RawString* Signature() const {
const bool instantiate = false;
- return BuildSignature(instantiate, kInternalName, TypeArguments::Handle());
+ return BuildSignature(instantiate, kInternalName,
+ Object::null_type_arguments());
}
// Build a string of the form '(T, {B b, C c}) => R' representing the
@@ -2211,7 +2212,7 @@ class Function : public Object {
RawString* UserVisibleSignature() const {
const bool instantiate = false;
return BuildSignature(instantiate, kUserVisibleName,
- TypeArguments::Handle());
+ Object::null_type_arguments());
}
// Build a string of the form '(A, {B b, C c}) => D' representing the
« no previous file with comments | « runtime/vm/jit_optimizer.cc ('k') | runtime/vm/object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698