Skip to content

Commit

Permalink
Fix Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
skjdbg committed Nov 27, 2023
1 parent 6167356 commit 9dacf76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sv-parser-parser/src/expressions/subroutine_calls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ pub(crate) fn method_call(s: Span) -> IResult<Span, MethodCall> {
let (s, c) = method_call_body(s)?;
let mut init_method_call = MethodCall { nodes: (a, b, c) };

//check for chained method method
// check for chained method
let (s, sub_calls) = many0(pair(symbol("."), method_call_body))(s)?;
for (dot, body) in sub_calls {
let fun_sub_call = Primary::FunctionSubroutineCall(Box::new(FunctionSubroutineCall {
Expand Down

0 comments on commit 9dacf76

Please sign in to comment.