Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Field in UpgradeResult
The files produced as part of the upgrade.
public List<OutputFile> Files;Property in UpgradeResult
Gets a collection containing all Diagnostic objects across all of the files in Files .
public readonly IEnumerable<Diagnostic> Diagnostics { get }Field in OutputFile
Indicates whether this OutputFile represents a new file to be created. If this is true , OriginalSource will be the empty string, and Replacements will be empty.
public bool IsNewFile;Property in OutputFile
The upgraded text of the file.
public readonly string UpgradedSource { get }Struct in Yarn.Compiler.Upgrader
Inherits from System.ValueType
The result of an upgrade.
public struct UpgradeResultThe files produced as part of the upgrade.
Struct in
Inherits from System.ValueType
A file generated as part of an upgrade.
Field in
The diagnostics produced for this file as a result of the upgrade process.
public IEnumerable<Diagnostic> Diagnostics;public struct OutputFileGets a collection containing all objects across all of the files in .
A file generated as part of an upgrade.
Field in
The path of the file.
Field in
The original text of the file, prior to upgrades.
Field in
The list of replacements needed to be made in order to go from to .
public string Path;public string OriginalSource;public IEnumerable<TextReplacement> Replacements;The diagnostics produced for this file as a result of the upgrade process.
Indicates whether this OutputFile represents a new file to be created. If this is true , OriginalSource will be the empty string, and Replacements will be empty.
The original text of the file, prior to upgrades.
The path of the file.
The list of replacements needed to be made in order to go from OriginalSource to UpgradedSource .
The upgraded text of the file.