| Index: src/factory.h
|
| diff --git a/src/factory.h b/src/factory.h
|
| index ba6800b04d496e437429f744addbc0c340aa5669..0bb883d72bfbcc9f807fe74556e411867a1d284b 100644
|
| --- a/src/factory.h
|
| +++ b/src/factory.h
|
| @@ -196,6 +196,14 @@ class Factory FINAL {
|
| // Create a new cons string object which consists of a pair of strings.
|
| MUST_USE_RESULT MaybeHandle<String> NewConsString(Handle<String> left,
|
| Handle<String> right);
|
| + MUST_USE_RESULT MaybeHandle<String> NewOneByteConsString(
|
| + int length, Handle<String> left, Handle<String> right);
|
| + MUST_USE_RESULT MaybeHandle<String> NewTwoByteConsString(
|
| + int length, Handle<String> left, Handle<String> right);
|
| + MUST_USE_RESULT MaybeHandle<String> NewRawConsString(Handle<Map> map,
|
| + int length,
|
| + Handle<String> left,
|
| + Handle<String> right);
|
|
|
| // Create a new string object which holds a proper substring of a string.
|
| Handle<String> NewProperSubString(Handle<String> str,
|
|
|