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

Unified Diff: vm/object.h

Issue 10823269: - Improve generated 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
« no previous file with comments | « lib/arrays.dart ('k') | vm/object.cc » ('j') | vm/raw_object_snapshot.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/object.h
===================================================================
--- vm/object.h (revision 10270)
+++ vm/object.h (working copy)
@@ -1782,7 +1782,8 @@
}
static RawTokenStream* New(intptr_t length);
- static RawTokenStream* New(const Scanner::GrowableTokenStream& tokens);
+ static RawTokenStream* New(const Scanner::GrowableTokenStream& tokens,
+ const String& private_key);
// The class Iterator encapsulates iteration over the tokens
// in a TokenStream object.
@@ -1825,6 +1826,9 @@
private:
void SetLength(intptr_t value) const;
+ RawString* PrivateKey() const;
+ void SetPrivateKey(const String& value) const;
+
uint8_t* EntryAddr(intptr_t token_pos) const {
ASSERT((token_pos >=0) && (token_pos < Length()));
return &raw_ptr()->data_[token_pos];
« no previous file with comments | « lib/arrays.dart ('k') | vm/object.cc » ('j') | vm/raw_object_snapshot.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698