Class IncludeResolvedFile
- Namespace
- ShadowDusk.Core.Preprocessor
- Assembly
- ShadowDusk.Core.dll
The successful result of resolving an #include: the file's path and text.
public sealed record IncludeResolvedFile : IEquatable<IncludeResolvedFile>
- Inheritance
-
IncludeResolvedFile
- Implements
- Inherited Members
Constructors
IncludeResolvedFile(string, string)
The successful result of resolving an #include: the file's path and text.
public IncludeResolvedFile(string FilePath, string Text)
Parameters
Properties
FilePath
The resolved file path.
public string FilePath { get; init; }
Property Value
Text
The file's source text.
public string Text { get; init; }