Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Struct in Yarn.Compiler
Inherits from System.ValueType
An object that contains Yarn source code to compile, and instructions on how to compile it.
Instances of this struct are used with Compile(CompilationJob) to produce CompilationResult objects.
The type of compilation that the compiler will do.
The type of compilation to perform.
The declarations for variables.
Gets or sets the version of the Yarn language.
The collection of type declarations that should be imported and made available to the compiler, prior to compilation.
Represents the contents of a file to compile.
The structs that represent the content to parse..
The that contains declarations for functions.
Creates a new using the contents of a collection of files.
Creates a new using the contents of a collection of files.
Creates a new using the contents of a string.
System.Collections.Generic.IEnumerable<string>
paths
The paths to the files.
Yarn.Library library
The Library containing functions to use for this compilation.
Method in CompilationJob
Creates a new CompilationJob using the contents of a collection of files.
string[]
paths
The paths to the files.
A new CompilationJob .
Method in CompilationJob
Creates a new CompilationJob using the contents of a string.
string
fileName
The name to assign to the compiled file.
string
source
The text to compile.
library
Library of function definitions to use during compilation.
int
languageVersion
The version of the Yarn language to use.
A new CompilationJob .
The name of the file.
The source code of this file.
Enumeration Member in Type
The compiler will derive only the variable and function declarations, and file tags, found in the script.
Enum in CompilationJob
Inherits from System.Enum
The type of compilation that the compiler will do.
Generate declarations only. This is equivalent to .
The compiler will do a full compilation, and generate a , function declaration set, and string table.
The compiler will generate a string table only.
The compiler will derive only the variable and function declarations, and file tags, found in the script.