Go to the source code of this file.
◆ CHECK_SELF_OR_THROW_FAST
#define CHECK_SELF_OR_THROW_FAST |
( |
| return_value | ) |
|
Value: if (!self) { \
"This method is not defined on objects inheriting from FastCAPI."); \
return return_value; \
}
Definition at line 27 of file d8-test.cc.
◆ CHECK_SELF_OR_THROW_FAST_OPTIONS
#define CHECK_SELF_OR_THROW_FAST_OPTIONS |
( |
| return_value | ) |
|
Value: if (!self) { \
HandleScope handle_scope(options.isolate); \
options.isolate->ThrowError( \
"This method is not defined on objects inheriting from FastCAPI."); \
return return_value; \
}
Definition at line 19 of file d8-test.cc.
◆ CHECK_SELF_OR_THROW_SLOW
#define CHECK_SELF_OR_THROW_SLOW |
( |
| ) |
|
Value: if (!self) { \
info.GetIsolate()->ThrowError( \
"This method is not defined on objects inheriting from FastCAPI."); \
return; \
}
Definition at line 34 of file d8-test.cc.