Compile
(Engine-Level Function)
FuncNames | ||||||||||||||||||||||||||||||||||||||||
Required. Any array expression for the function names list. | ||||||||||||||||||||||||||||||||||||||||
OpCodes | ||||||||||||||||||||||||||||||||||||||||
Required. Any array expression for the Operational Codes that correspond to the names in FuncNames. | ||||||||||||||||||||||||||||||||||||||||
Number | ||||||||||||||||||||||||||||||||||||||||
Required. Any numeric expression for the number of FuncNames/OpCodes pairs. | ||||||||||||||||||||||||||||||||||||||||
Module | ||||||||||||||||||||||||||||||||||||||||
Required. Any expression that returns a module value. This is the context where the compile takes place. | ||||||||||||||||||||||||||||||||||||||||
Script | ||||||||||||||||||||||||||||||||||||||||
Required. Any logical expression. If true, the text will be compiled as a script statement. If false, it will be compiled as a normal statement. | ||||||||||||||||||||||||||||||||||||||||
Sense | ||||||||||||||||||||||||||||||||||||||||
Required. Any logical expression. If true, this statement will be compiled as case-sensitive, otherwise, this will be case-insensitive. | ||||||||||||||||||||||||||||||||||||||||
Stream | ||||||||||||||||||||||||||||||||||||||||
Required. Any expression for the input stream to read. | ||||||||||||||||||||||||||||||||||||||||
ClassBuffer | ||||||||||||||||||||||||||||||||||||||||
Required. Any text expression that provides the tokenizer look-up table. | ||||||||||||||||||||||||||||||||||||||||
NumClass | ||||||||||||||||||||||||||||||||||||||||
Required. Any numeric expression for the number of character classes in the tokenizer state table. | ||||||||||||||||||||||||||||||||||||||||
TStateBuffer | ||||||||||||||||||||||||||||||||||||||||
Required. Any expression for the tokenizer state table. The tokenizer begins in state 0. | ||||||||||||||||||||||||||||||||||||||||
TActionBuffer | ||||||||||||||||||||||||||||||||||||||||
Required. Any two-dimensional array expression for the tokenizer action table. | ||||||||||||||||||||||||||||||||||||||||
NumTokens | ||||||||||||||||||||||||||||||||||||||||
Required. Any numeric expression for the number of tokens in the compiler table. | ||||||||||||||||||||||||||||||||||||||||
CStateBuffer | ||||||||||||||||||||||||||||||||||||||||
Required. Any text expression for the compiler state table. The compiler begins in state 0. | ||||||||||||||||||||||||||||||||||||||||
CActionBuffer | ||||||||||||||||||||||||||||||||||||||||
Required. Any text expression for the compiler action table. | ||||||||||||||||||||||||||||||||||||||||
CDataBuffer | ||||||||||||||||||||||||||||||||||||||||
Required. Any two-dimensional array expression for the compiler data table. | ||||||||||||||||||||||||||||||||||||||||
Error | ||||||||||||||||||||||||||||||||||||||||
Required. Must be a variable into which the resulting error code will be stored. The error code may be any of the following:
|
ParserStack |
Required. Any stack used to govern the compile. |
LineCount |
Required. Must be a variable. The current line (number of carriage returns) will be stored here. |
Column |
Required. Must be a variable. The current column will be stored here. |
Count |
Required. Must be a variable. The number of characters processed is stored here. |
Comments: | This function is used when compiling text statements. The syntax of the statements is described by the table parameters that are not fully described here. This function compiles text to create a new function, but doesn't add the new function. |