mirror of
https://github.com/microsoft/regorus.git
synced 2026-08-05 02:16:11 +00:00
Number is implemented using rust_decimal::Decimal which uses a 96 bit mantissa. TODO: a) Support u64, i64 variants b) Determine desired semantics for floating-point c) Determine desired big integer length d) Explore other big int/big float crates Signed-off-by: Anand Krishnamoorthi <anakrish@microsoft.com>
23 lines
388 B
Rust
23 lines
388 B
Rust
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT License.
|
|
|
|
pub mod ast;
|
|
mod builtins;
|
|
pub mod engine;
|
|
pub mod interpreter;
|
|
pub mod lexer;
|
|
pub mod number;
|
|
pub mod parser;
|
|
pub mod scheduler;
|
|
mod utils;
|
|
pub mod value;
|
|
|
|
pub use ast::*;
|
|
pub use engine::*;
|
|
pub use interpreter::*;
|
|
pub use lexer::*;
|
|
pub use number::*;
|
|
pub use parser::*;
|
|
pub use scheduler::*;
|
|
pub use value::*;
|