Table of Contents

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

FilePath string

The resolved file path.

Text string

The file's source text.

Properties

FilePath

The resolved file path.

public string FilePath { get; init; }

Property Value

string

Text

The file's source text.

public string Text { get; init; }

Property Value

string