| Index: runtime/vm/zone.h
|
| diff --git a/runtime/vm/zone.h b/runtime/vm/zone.h
|
| index 361e6e28c26ff56e2d1c0987039d0ddeab681fb9..83c65c4565995dddc2984444cbbf1d2c5ac2e385 100644
|
| --- a/runtime/vm/zone.h
|
| +++ b/runtime/vm/zone.h
|
| @@ -46,6 +46,10 @@ class Zone {
|
| // Make a copy of the string in the zone allocated area.
|
| char* MakeCopyOfString(const char* str);
|
|
|
| + // Concatenate strings |a| and |b|. |a| may be NULL. If |a| is not NULL,
|
| + // |join| will be inserted between |a| and |b|.
|
| + char* ConcatStrings(const char* a, const char* b, char join = ',');
|
| +
|
| // TODO(zra): Remove these calls and replace them with calls to OS::SCreate
|
| // and OS::VSCreate.
|
| // These calls are deprecated. Do not add further calls to these functions.
|
|
|