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; |