Index: runtime/vm/dart_entry.cc |
=================================================================== |
--- runtime/vm/dart_entry.cc (revision 24876) |
+++ runtime/vm/dart_entry.cc (working copy) |
@@ -167,6 +167,16 @@ |
} |
+RawString* ArgumentsDescriptor::NameAt(intptr_t index) const { |
+ const intptr_t offset = kFirstNamedEntryIndex + |
+ (index * kNamedEntrySize) + |
+ kNameOffset; |
+ String& result = String::Handle(); |
+ result ^= array_.At(offset); |
+ return result.raw(); |
+} |
+ |
+ |
bool ArgumentsDescriptor::MatchesNameAt(intptr_t index, |
const String& other) const { |
const intptr_t offset = kFirstNamedEntryIndex + |