Replace num-bigint with malachite-bigint (#18)

Co-authored-by: Jeong YunWon <jeong@youknowone.org>
This commit is contained in:
Steve Shi
2023-06-02 10:06:18 +02:00
committed by GitHub
parent 5e9e8a7589
commit a2e3209c42
16 changed files with 51 additions and 37 deletions

View File

@@ -4,7 +4,7 @@
// See also: https://greentreesnakes.readthedocs.io/en/latest/nodes.html#keyword
use crate::{
ast::{self as ast, Ranged},
ast::{self as ast, Ranged, bigint::BigInt},
lexer::{LexicalError, LexicalErrorType},
function::{ArgumentList, parse_args, validate_pos_params, validate_arguments},
context::set_context,
@@ -12,7 +12,6 @@ use crate::{
token::{self, StringKind},
text_size::TextSize, parser::optional_range
};
use num_bigint::BigInt;
grammar;