| 50 | /* Opaque typing convenience methods */ |
| 51 | |
| 52 | inline JSC::ExecState* toJS(JSContextRef c) |
| 53 | { |
| 54 | ASSERT(c); |
| 55 | return reinterpret_cast<JSC::ExecState*>(const_cast<OpaqueJSContext*>(c)); |
| 56 | } |
| 57 | |
| 58 | inline JSC::ExecState* toJS(JSGlobalContextRef c) |
| 59 | { |
no test coverage detected