Skip to content

Commit 50936e0

Browse files
author
Agaev Huseyn
committed
Fix parser for BigDecimal values
1 parent 216d721 commit 50936e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/parser/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7278,7 +7278,7 @@ impl<'a> Parser<'a> {
72787278
let next_token = self.next_token();
72797279
match next_token.token {
72807280
Token::Number(n, l) => Ok(Value::Number(
7281-
Self::parse::<String>(tok.to_string() + &n, location)?,
7281+
Self::parse(tok.to_string() + &n, location)?,
72827282
l,
72837283
)),
72847284
_ => self.expected("number", next_token),

0 commit comments

Comments
 (0)