| Index: runtime/vm/object.h
|
| diff --git a/runtime/vm/object.h b/runtime/vm/object.h
|
| index 902ea91ed2b0515e3ffa8464f4976bc26a5b3e70..cda05e9faeb16ea3288f26f943a13d7ca6d0dba6 100644
|
| --- a/runtime/vm/object.h
|
| +++ b/runtime/vm/object.h
|
| @@ -6575,6 +6575,13 @@ class String : public Instance {
|
| static RawString* SubString(const String& str,
|
| intptr_t begin_index,
|
| intptr_t length,
|
| + Heap::Space space = Heap::kNew) {
|
| + return SubString(Thread::Current(), str, begin_index, length, space);
|
| + }
|
| + static RawString* SubString(Thread* thread,
|
| + const String& str,
|
| + intptr_t begin_index,
|
| + intptr_t length,
|
| Heap::Space space = Heap::kNew);
|
|
|
| static RawString* Transform(int32_t (*mapping)(int32_t ch),
|
|
|