Skip to content

Commit 73a348f

Browse files
committed
format
1 parent cddbf2a commit 73a348f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/parser/parser_lib.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,10 @@ export class Parser<T> {
8888
export type Position = Readonly<{ position: number; length: number }>;
8989
export class PositionedError extends ResultError {
9090
override name = "PositionedError";
91-
constructor(message: string, public readonly position: null | Position = null) {
91+
constructor(
92+
message: string,
93+
public readonly position: null | Position = null,
94+
) {
9295
super(message);
9396
}
9497
}

0 commit comments

Comments
 (0)