Scripts.compileStorage

Function/Meaning
Compiling scripts on storage
Type
Method of the Scripts class
Syntax
compileStorage(inputfile, outputfile, isresult=false, outputdebug=false, isexpression=false)
Arguments
inputfile Specifies the storage to be compiled.
outputfile Specifies the output bytecode storage.
isresult Specifies whether a return value is required.
outputdebug Specifies whether to include debug information.
isexpression Specifies whether it is an expression.
Return Value
None (void)
Description
Reads the specified storage, compiles its content, and outputs it as a bytecode file.
The compiled bytecode file can be executed just like a normal script using execStorage or evalStorage.
Reference
Scripts.execStorage
Scripts.evalStorage