예제 #1
0
파일: JS_Value.cpp 프로젝트: was4444/pdfium
int CJS_Value::ToInt() const {
  return JS_ToInt32(m_isolate, m_pValue);
}
예제 #2
0
CJS_Value::operator int() const
{

	return JS_ToInt32(m_pValue);

}