Skip to content

Commit 552d686

Browse files
authored
Merge pull request #16 from jO-Osko/library-parsing-fix
Correctly parsing library type
2 parents caa86c8 + 4d1c43d commit 552d686

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)