📁
SKYSHELL MANAGER
PHP v8.3.6
Create
Create
Path:
root
/
var
/
www
/
cstage
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
ms-files.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-activate.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: func.js
import { RuntimeError } from "../../../errors"; function createInstance(atOffset, n, fromModule) { if (!(typeof atOffset === "number")) { throw new Error('typeof atOffset === "number"' + " error: " + (undefined || "unknown")); } // [param*, result*] var type = [[], []]; if (n.signature.type !== "Signature") { throw new RuntimeError("Function signatures must be denormalised before execution"); } var signature = n.signature; signature.params.forEach(function (param) { type[0].push(param.valtype); }); signature.results.forEach(function (result) { type[1].push(result); }); var code = n.body; return { atOffset: atOffset, type: type, code: code, module: fromModule, isExternal: false }; } module.exports = { createInstance: createInstance };
Save