* Constructor * @param name name of the script * @param script actual PHP code * @param size length of the string */
| 53 | * @param size length of the string |
| 54 | */ |
| 55 | Script::Script(const char *name, const char *phpcode, size_t size) _NOEXCEPT |
| 56 | { |
| 57 | // construct opcodes |
| 58 | _opcodes = new Opcodes(compile(name, phpcode, size)); |
| 59 | } |
| 60 | |
| 61 | /** |
| 62 | * Destructor |
nothing calls this directly
no outgoing calls
no test coverage detected