Search
Compiler.compile Method (String)
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
Package: 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