Search
Compiler.compile Method
See Also
 






Returns a ByteCode object corresponding to the specified source code. The returned byte code can be subsequently evaluated by calling its ByteCode.evaluate method.

Namespace: com.mindfusion.scripting
File: com.mindfusion.scripting

 Syntax

Java  Copy Code

public static ByteCode compile (
    String source
)

 Parameters

source

The script to compile.

 Return Value

The compiled script.

 See Also