Home | History | Annotate | Download | only in API

Lines Matching refs:jsClass

160 OpaqueJSClassContextData::OpaqueJSClassContextData(OpaqueJSClass* jsClass)
161 : m_class(jsClass)
163 if (jsClass->m_staticValues) {
165 OpaqueJSClassStaticValuesTable::const_iterator end = jsClass->m_staticValues->end();
166 for (OpaqueJSClassStaticValuesTable::const_iterator it = jsClass->m_staticValues->begin(); it != end; ++it) {
175 if (jsClass->m_staticFunctions) {
177 OpaqueJSClassStaticFunctionsTable::const_iterator end = jsClass->m_staticFunctions->end();
178 for (OpaqueJSClassStaticFunctionsTable::const_iterator it = jsClass->m_staticFunctions->begin(); it != end; ++it) {
233 @param jsClass A JSClass whose prototype you want to get.
234 @result The JSObject prototype that was automatically generated for jsClass, or NULL if no prototype was automatically generated. This is the prototype that will be used when constructing an object using jsClass.