Skip to content

Commit

Permalink
add a missing Readonly
Browse files Browse the repository at this point in the history
  • Loading branch information
tjenkinson committed Jan 14, 2023
1 parent cea0728 commit 900d6fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/character-reader/character-reader-level-2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -168,10 +168,10 @@ type State = Readonly<{
groupsWithInfiniteSize: ReadonlySet<number>;
preceedingZeroWidthEntries: readonly ZeroWidthEntry[];
quantifierIterationsAtLastGroup: QuantifierIterations;
referenceCharacterReaderWithReference: {
referenceCharacterReaderWithReference: Readonly<{
reader: InternalReader;
reference: Reference;
} | null;
}> | null;
}>;

function* characterReaderLevel1ToInternalReader(
Expand Down

0 comments on commit 900d6fa

Please sign in to comment.