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

Unified Diff: runtime/vm/object.cc

Issue 1990613002: Attempt to fix the linker issues by wrapping the template call with a helper (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 7 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/object.h ('k') | runtime/vm/raw_object_snapshot.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 ad7b37ae34434626c45ade692961e4d8114c090a..75dde81617d85fc5760980722ed11b2b135635bc 100644
--- a/runtime/vm/object.cc
+++ b/runtime/vm/object.cc
@@ -3184,6 +3184,11 @@ RawClass* Class::New(const Library& lib,
}
+RawClass* Class::NewInstanceClass() {
+ return Class::New<Instance>(kIllegalCid);
+}
+
+
RawClass* Class::NewNativeWrapper(const Library& library,
const String& name,
int field_count) {
« no previous file with comments | « runtime/vm/object.h ('k') | runtime/vm/raw_object_snapshot.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698