rustfmt with nightly options

also some other minor formatting changes
This commit is contained in:
Moritz Gmeiner 2024-09-03 16:48:00 +02:00
commit f8b59e6034
17 changed files with 91 additions and 291 deletions

View file

@ -6,10 +6,9 @@ use std::rc::Rc;
use rustc_hash::FxHashMap;
use smol_str::SmolStr;
use crate::error::RuntimeError;
use super::lox_std::init_std;
use super::Value;
use crate::error::RuntimeError;
pub struct Runtime {
globals: FxHashMap<SmolStr, Value>,