Skip to content

Commit 4d1c43d

Browse files
committed
Correctly parsing library identifier
1 parent caa86c8 commit 4d1c43d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/solidity-parser/solidity_raw_parser.mly

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -575,7 +575,7 @@ contract_part:
575575
event_params = $3;
576576
event_anonymous = $4; }) }
577577
| USING long_ident FOR type_name_or_star SEMI
578-
{ mk $loc (UsingForDeclaration ($2, None)) }
578+
{ mk $loc (UsingForDeclaration ($2, $4)) }
579579
;;
580580

581581
type_name_or_star:

0 commit comments

Comments
 (0)