Home | History | Annotate | Download | only in api

Lines Matching defs:m_exception

96     JSValueRef m_exception;
124 return m_exception;
129 if (m_exception)
130 JSValueUnprotect(m_context, m_exception);
131 m_exception = 0;
140 if (m_exception)
141 JSValueUnprotect(m_context, m_exception);
143 m_exception = exception;
148 if (!hasUncaughtException() || !JSValueIsObject(m_context, m_exception))
153 JSValueRef lineNumber = JSObjectGetProperty(m_context, const_cast<JSObjectRef>(m_exception), lineNumberPropertyName.get(), &exception);
160 if (!hasUncaughtException() || !JSValueIsObject(m_context, m_exception))
166 JSValueRef jsFileName = JSObjectGetProperty(m_context, const_cast<JSObjectRef>(m_exception), fileNamePropertyName.get(), &exception);
167 JSValueRef jsLineNumber = JSObjectGetProperty(m_context, const_cast<JSObjectRef>(m_exception), lineNumberPropertyName.get(), &exception);