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

Unified Diff: vm/object.h

Issue 10834284: - Split Dart core libraries into shared sources and patch sources. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 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
Index: vm/object.h
===================================================================
--- vm/object.h (revision 10547)
+++ vm/object.h (working copy)
@@ -290,7 +290,6 @@
const Library& lib);
static void RegisterClass(const Class& cls,
const char* cname,
- const Script& script,
const Library& lib);
static void RegisterPrivateClass(const Class& cls,
@@ -464,6 +463,7 @@
RawString* UserVisibleName() const;
RawScript* script() const { return raw_ptr()->script_; }
+ void set_script(const Script& value) const;
intptr_t token_pos() const { return raw_ptr()->token_pos_; }
@@ -712,7 +712,6 @@
private:
void set_name(const String& value) const;
- void set_script(const Script& value) const;
void set_token_pos(intptr_t value) const;
void set_signature_function(const Function& value) const;
void set_signature_type(const AbstractType& value) const;
@@ -1995,7 +1994,7 @@
raw_ptr()->native_entry_resolver_ = value;
}
- RawError* Patch(const String& url, const String& source) const;
+ RawError* Patch(const Script& script) const;
RawString* PrivateName(const String& name) const;

Powered by Google App Engine
This is Rietveld 408576698