| Index: src/factory.cc
|
| ===================================================================
|
| --- src/factory.cc (revision 5030)
|
| +++ src/factory.cc (working copy)
|
| @@ -96,6 +96,12 @@
|
| }
|
|
|
|
|
| +Handle<String> Factory::NewRawAsciiString(int length,
|
| + PretenureFlag pretenure) {
|
| + CALL_HEAP_FUNCTION(Heap::AllocateRawAsciiString(length, pretenure), String);
|
| +}
|
| +
|
| +
|
| Handle<String> Factory::NewRawTwoByteString(int length,
|
| PretenureFlag pretenure) {
|
| CALL_HEAP_FUNCTION(Heap::AllocateRawTwoByteString(length, pretenure), String);
|
|
|