| 1703 | #endif |
| 1704 | |
| 1705 | inline bool identaccessdenied(ident *id) // check if ident is allowed in current context |
| 1706 | { |
| 1707 | ASSERT(execcontext >= 0 && execcontext < IEXC_NUM && id); |
| 1708 | return contextisolated[execcontext] && execcontext > id->context; |
| 1709 | } |
| 1710 | |
| 1711 | // script origin tracking |
| 1712 |
no outgoing calls
no test coverage detected