Skip to content

Commit 23c9e11

Browse files
committed
increase group label limit to 128
1 parent d797eb9 commit 23c9e11

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/parser.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -640,7 +640,7 @@ export class Parser {
640640
if (name !== undefined) {
641641
if (!/^[a-zA-Z0-9]*$/.test(name)) {
642642
throw new ParseError(ParseErrorKind.InvalidCharsInGroupName, this.lastSpan())
643-
} else if (name.length > 32) {
643+
} else if (name.length > 128) {
644644
throw new ParseError(ParseErrorKind.GroupNameTooLong, this.lastSpan())
645645
}
646646
}

0 commit comments

Comments
 (0)