v8
10.1.124 (node 18.2.0)
V8 is Google's open source JavaScript engine
|
#include <v8-script.h>
Public Types | |
enum | BufferPolicy { BufferNotOwned , BufferOwned } |
Public Member Functions | |
CachedData () | |
CachedData (const uint8_t *data, int length, BufferPolicy buffer_policy=BufferNotOwned) | |
~CachedData () | |
CachedData (const CachedData &)=delete | |
CachedData & | operator= (const CachedData &)=delete |
Data Fields | |
const uint8_t * | data |
int | length |
bool | rejected |
BufferPolicy | buffer_policy |
Compilation data that the embedder can cache and pass back to speed up future compilations. The data is produced if the CompilerOptions passed to the compilation functions in ScriptCompiler contains produce_data_to_cache = true. The data to cache can then can be retrieved from UnboundScript.
Definition at line 345 of file v8-script.h.
enum BufferPolicy |
Enumerator | |
---|---|
BufferNotOwned | |
BufferOwned |
Definition at line 346 of file v8-script.h.
|
inline |
Definition at line 348 of file v8-script.h.
References ScriptCompiler::CachedData::buffer_policy, ScriptCompiler::CachedData::BufferNotOwned, ScriptCompiler::CachedData::data, ScriptCompiler::CachedData::length, and ScriptCompiler::CachedData::rejected.
CachedData | ( | const uint8_t * | data, |
int | length, | ||
BufferPolicy | buffer_policy = BufferNotOwned |
||
) |
~CachedData | ( | ) |
|
delete |
|
delete |
BufferPolicy buffer_policy |
Definition at line 366 of file v8-script.h.
Referenced by ScriptCompiler::CachedData::CachedData().
const uint8_t* data |
Definition at line 363 of file v8-script.h.
Referenced by ScriptCompiler::CachedData::CachedData().
int length |
Definition at line 364 of file v8-script.h.
Referenced by ScriptCompiler::CachedData::CachedData().
bool rejected |
Definition at line 365 of file v8-script.h.
Referenced by ScriptCompiler::CachedData::CachedData().