JS DecompileScript
From MDC
Creates the source code of a script from a script's compiled form.
[edit] Syntax
JSString * JS_DecompileScript(JSContext *cx, JSScript *script, const char *name, uintN indent);
| Name | Type | Description |
|---|---|---|
cx |
JSContext * |
The context to use to decompile the script.
Requires request. (In a |
script |
JSScript * |
Script to decompile. |
name |
const char * |
Name to assign to the decompiled script. |
indent |
uintN |
Number of spaces to use for indented code. |
[edit] Description
JS_DecompileScript creates the source code version of a script from a script's compiled form, script. name is the name you assign to the text version of the script; it is used only for debugging the source code version produced by this function.
If successful, JS_DecompileScript returns a string containing the source code of the script. Otherwise, it returns NULL. The source code generated by this function is accurate but lacks function declarations. In order to make it suitable for recompiling, you must edit the code to add the function declarations, or call JS_DecompileFunction on a compiled version of each function to generate the function declarations.
[edit] See Also
LXR ID Search for JS_DecompileScript
JS_CompileFile, JS_CompileScript, JS_DecompileFunction, JS_DestroyScript, JS_EvaluateScript, JS_ExecuteScript