Scripts.compileStorage

機能/意味
Compile scripts on storage
タイプ
Scriptsクラスのメソッド
構文
compileStorage(inputfile, outputfile, isresult=false, outputdebug=false, isexpression=false)
引数
inputfile  Specify the storage to be compiled.
outputfile  Specifies output bytecode storage.
isresult  Specifies whether a return value is required.
outputdebug  Specifies whether to include debug information.
isexpression  Specify whether this is an expression.
戻り値
なし (void)
説明
 Reads the specified storage, compiles its contents, and outputs it as a bytecode file.
 The compiled bytecode file can be executed with execStorage or evalStorage in the same way as a normal script.
参照
Scripts.execStorage
Scripts.evalStorage