Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,13 @@ public interface IScriptPosition
/// <summary>
/// Represents the a span of text in a script.
/// </summary>
#nullable enable
public interface IScriptExtent
{
/// <summary>
/// The filename the extent includes, or null if the extent is not included in any file.
/// </summary>
string File { get; }
string? File { get; }

/// <summary>
/// The starting position of the extent.
Expand Down Expand Up @@ -103,6 +104,7 @@ public interface IScriptExtent
/// </summary>
int EndOffset { get; }
}
#nullable restore

/// <summary>
/// A few utility functions for script positions.
Expand Down