Interpreter - Renamed class submodule to classes
This commit is contained in:
parent
5062e6c348
commit
728c7a3857
4 changed files with 3 additions and 3 deletions
src/interpreter
|
@ -7,7 +7,7 @@ use crate::{
|
|||
tokens::{Token, TokenType},
|
||||
};
|
||||
|
||||
use super::{class::Class, functions::Function, Environment, EnvironmentRef, Value};
|
||||
use super::{classes::Class, functions::Function, Environment, EnvironmentRef, Value};
|
||||
|
||||
/// Evaluate an interpretable, returning its value.
|
||||
pub fn evaluate(ast: &ProgramNode, vars: ResolvedVariables) -> SloxResult<Value> {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue