Exemplo n.º 1
0
CJS_Value::operator float() const
{

	return (float)JS_ToNumber(m_pValue);

}
Exemplo n.º 2
0
double CJS_Value::ToDouble() const {
  return JS_ToNumber(m_isolate, m_pValue);
}
Exemplo n.º 3
0
CJS_Value::operator double() const
{

	return JS_ToNumber(m_pValue);
	
}