summaryrefslogtreecommitdiff
path: root/rust/src/parser.rs
diff options
context:
space:
mode:
authorArnaud Bailly <arnaud.bailly@iohk.io>2024-09-25 21:49:33 +0200
committerArnaud Bailly <arnaud.bailly@iohk.io>2024-09-25 21:49:33 +0200
commit3ac809d7f8c4f29bfcd0a52c7e168e783abc88df (patch)
tree76ed4bbdb97e423593d2cb358906e43e75d19ddd /rust/src/parser.rs
parent7f83391f3e4f37fbc512fd7d2bb7c7ec2f0858e9 (diff)
downloadlambda-nantes-3ac809d7f8c4f29bfcd0a52c7e168e783abc88df.tar.gz
Extract IO operations to own module
Diffstat (limited to 'rust/src/parser.rs')
-rw-r--r--rust/src/parser.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/src/parser.rs b/rust/src/parser.rs
index 121a10f..2a5fef4 100644
--- a/rust/src/parser.rs
+++ b/rust/src/parser.rs
@@ -235,7 +235,7 @@ fn parse_number(token: &Token) -> Result<Value, String> {
#[cfg(test)]
mod tests {
- use crate::parse_total;
+ use super::parse_total;
use super::Token::*;
use super::Value;