本文整理汇总了C++中value::to_object方法的典型用法代码示例。如果您正苦于以下问题:C++ value::to_object方法的具体用法?C++ value::to_object怎么用?C++ value::to_object使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类value
的用法示例。
在下文中一共展示了value::to_object方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: instance_of
bool object::instance_of(value constructor) const {
root_object cons(constructor.to_object());
if (cons.is_null())
throw exception("Could not check instance constructor: "
"constructor has to be a non-null object");
JSBool result;
if (!JS_HasInstance(
Impl::current_context(),
Impl::get_object(cons),
Impl::get_jsval(value(*this)),
&result))
throw exception("Could not check instance constructor");
return result;
}
示例2: get_byte
static int get_byte(value byte_) {
int byte;
if (byte_.is_int()) {
byte = byte_.get_int();
if (byte < 0 || byte > 255)
throw exception("Byte is outside the valid range for bytes");
return byte;
}
object byte_o = byte_.to_object();
if (byte_o.is_null())
throw exception("Not a valid byte");
binary &byte_bin = flusspferd::get_native<binary>(byte_o);
if (byte_bin.get_length() != 1)
throw exception("Byte must not be a non single-element Binary");
byte = byte_bin.get_const_data()[0];
return byte;
}
示例3: arr
std::size_t convert_container_base::from_value::length(value obj_v) {
array arr(obj_v.to_object());
return arr.length();
}
示例4:
void convert_container_base::to_value::add(value obj, value el) {
obj.to_object().call("push", el);
}