#include <v8.h>
Public Member Functions | |
| virtual | ~ExternalStringResource () |
| virtual const uint16_t * | data () const =0 |
| virtual size_t | length () const =0 |
An ExternalStringResource is a wrapper around a two-byte string buffer that resides outside V8's heap. Implement an ExternalStringResource to manage the life cycle of the underlying buffer. Note that the string data must be immutable.
| virtual v8::String::ExternalStringResource::~ExternalStringResource | ( | ) | [inline, virtual] |
Override the destructor to manage the life cycle of the underlying buffer.
| virtual const uint16_t* v8::String::ExternalStringResource::data | ( | ) | const [pure virtual] |
The string data from the underlying buffer.
| virtual size_t v8::String::ExternalStringResource::length | ( | ) | const [pure virtual] |
The length of the string. That is, the number of two-byte characters.
1.7.1