Type

Enum in CompilationJob

Inherits from System.Enum

Summary

The type of compilation that the compiler will do.

public enum Type
{
    FullCompilation,
    TypeCheck,
    DeclarationsOnly = TypeCheck,
    StringsOnly
}

Members

NameDescription
DeclarationsOnlyGenerate declarations only. This is equivalent to TypeCheck .
FullCompilationThe compiler will do a full compilation, and generate a Program , function declaration set, and string table.
StringsOnlyThe compiler will generate a string table only.
TypeCheckThe compiler will derive only the variable and function declarations, and file tags, found in the script.