Skip to content

Commit

Permalink
Missed one
Browse files Browse the repository at this point in the history
  • Loading branch information
rbergen committed Aug 23, 2024
1 parent 680fadd commit 3010991
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/MixAssembler/Finding/AssemblyFinding.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ namespace MixAssembler.Finding

public abstract class AssemblyFinding(Severity severity, int lineNumber, LineSection section, int startCharIndex, int length)
{
public int Length { get; private set; } = length;
public int LineNumber { get; private set; } = lineNumber;
public LineSection LineSection { get; private set; } = section;
public Severity Severity { get; private set; } = severity;
public int StartCharIndex { get; private set; } = startCharIndex;
public int Length => length;
public int LineNumber => lineNumber;
public LineSection LineSection => section;
public Severity Severity => severity;
public int StartCharIndex => startCharIndex;

public const int NoNumber = int.MinValue;

Expand Down

0 comments on commit 3010991

Please sign in to comment.