![]() |
v8
V8 is Google’s open source high-performance JavaScript and WebAssembly engine, written in C++.
|
#include <v8-primitive.h>
Public Member Functions | |
| Utf8Value (Isolate *isolate, Local< v8::Value > obj, WriteOptions options=REPLACE_INVALID_UTF8) | |
| ~Utf8Value () | |
| char * | operator* () |
| const char * | operator* () const |
| size_t | length () const |
| Utf8Value (const Utf8Value &)=delete | |
| void | operator= (const Utf8Value &)=delete |
Private Attributes | |
| char * | str_ |
| size_t | length_ |
Converts an object to a UTF-8-encoded character array. Useful if you want to print the object. If conversion to a string fails (e.g. due to an exception in the toString() method of the object) then the length() method returns 0 and the * operator returns NULL.
WARNING: This will unconditionally copy the contents of the JavaScript string, and should be avoided in situations where performance is a concern. Consider using WriteUtf8() instead.
Definition at line 648 of file v8-primitive.h.
| v8::String::Utf8Value::Utf8Value | ( | v8::Isolate * | v8_isolate, |
| Local< v8::Value > | obj, | ||
| WriteOptions | options = REPLACE_INVALID_UTF8 ) |
| v8::String::Utf8Value::~Utf8Value | ( | ) |
|
delete |
|
inline |
|
inline |
Definition at line 653 of file v8-primitive.h.
|
inline |
Definition at line 654 of file v8-primitive.h.
|
delete |
|
private |
Definition at line 663 of file v8-primitive.h.
|
private |
Definition at line 662 of file v8-primitive.h.