From b1d0e22b1f5fe907ba3d48931e5a38b9a75b0dcf Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Sun, 17 Jan 2021 21:13:57 +0300 Subject: chore(tazjin/rlox): Move other modules under treewalk:: It's unclear if the second part of the book can reuse anything from the first part (I'm guessing probably the scanner, but I'll move that back if it turns out to be the case). Change-Id: I9411355929e31ac6e953599e51665406b1f48d55 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2415 Reviewed-by: tazjin Tested-by: BuildkiteCI --- users/tazjin/rlox/src/treewalk/interpreter/builtins.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'users/tazjin/rlox/src/treewalk/interpreter/builtins.rs') diff --git a/users/tazjin/rlox/src/treewalk/interpreter/builtins.rs b/users/tazjin/rlox/src/treewalk/interpreter/builtins.rs index 0ec6ae08c354..709e53c7c0eb 100644 --- a/users/tazjin/rlox/src/treewalk/interpreter/builtins.rs +++ b/users/tazjin/rlox/src/treewalk/interpreter/builtins.rs @@ -1,8 +1,8 @@ use std::fmt; use std::time::{SystemTime, UNIX_EPOCH}; -use crate::errors::Error; -use crate::parser::Literal; +use crate::treewalk::errors::Error; +use crate::treewalk::parser::Literal; use crate::treewalk::interpreter::Value; pub trait Builtin: fmt::Debug { -- cgit 1.4.1