Skip to content

Commit 41dabd0

Browse files
committed
Fixed symbolic conflicts
These have been there for a while already, but were never detected due to a bug in ANTLR.
1 parent 7da2619 commit 41dabd0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apt/apt.g4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ grammar apt;
88

99
// productions
1010
record
11-
: commented = commenterR? rType = TypeR WSS options = optionsR? uri = uriR WSS distribution = wordWithDash components = componentsR WSS? EOF
11+
: commented = commenterR? rType = TypeR WSS options_ = optionsR? uri = uriR WSS distribution = wordWithDash components = componentsR WSS? EOF
1212
;
1313

1414
wordWithDashSegment

sql/tsql/TSqlParser.g4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4088,7 +4088,7 @@ group_by_item
40884088

40894089
option_clause
40904090
// https://msdn.microsoft.com/en-us/library/ms181714.aspx
4091-
: OPTION '(' options += option (',' options += option)* ')'
4091+
: OPTION '(' options_ += option (',' options_ += option)* ')'
40924092
;
40934093

40944094
option

0 commit comments

Comments
 (0)