Skip to content

Commit

Permalink
Added comment on Exception
Browse files Browse the repository at this point in the history
  • Loading branch information
leMicin committed Dec 29, 2024
1 parent a5fded5 commit 168c8ce
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/Sidekick.Apis.Poe/Parser/Pseudo/PseudoDefinition.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,16 @@ public abstract class PseudoDefinition

protected abstract List<PseudoPattern> Patterns { get; }

/// <summary>
/// Represents a regular expression pattern used to exclude certain modifier texts
/// during the processing of pseudo-modifier definitions in the Path of Exile API.
/// </summary>
/// <remarks>
/// This property defines a regular expression that matches modifier texts
/// which should be excluded from further processing. Each derived class provides
/// a specific implementation of this property. It is utilized within the
/// initialization and parsing processes to filter out unwanted modifier entries.
/// </remarks>
protected abstract Regex? Exception { get; }

private string? Text { get; set; }
Expand Down

0 comments on commit 168c8ce

Please sign in to comment.