Browse Source

Removing debug output, switch to normal

pull/256/head
Jason Williams 4 years ago
parent
commit
edab5ca6cc
  1. 6
      boa_cli/src/main.rs

6
boa_cli/src/main.rs

@ -2,7 +2,7 @@
#![warn(clippy::perf)]
#![allow(clippy::cognitive_complexity)]
use boa::{exec, exec::Executor, forward_val, realm::Realm};
use boa::{exec::Executor, forward_val, realm::Realm};
use std::{fs::read_to_string, path::PathBuf};
use structopt::StructOpt;
@ -23,7 +23,6 @@ pub fn main() -> Result<(), std::io::Error> {
let buffer = read_to_string(args.file)?;
if args.shell {
let realm = Realm::create();
let mut engine = Executor::new(realm);
@ -31,9 +30,6 @@ pub fn main() -> Result<(), std::io::Error> {
Ok(v) => print!("{}", v.to_string()),
Err(v) => eprint!("{}", v.to_string()),
}
} else {
dbg!(exec(&buffer));
}
Ok(())
}

Loading…
Cancel
Save