Remove old nushell/merge engine-q

This commit is contained in:
JT
2022-02-07 14:54:06 -05:00
parent 10c4c50f1f
commit d70d91e559
430 changed files with 14543 additions and 7865 deletions

View File

@ -1,25 +1,10 @@
<<<<<<< HEAD
=======
use nu_command::create_default_context;
use nu_protocol::engine::StateWorkingSet;
>>>>>>> 9259a56a28f1dd3a4b720ad815aa19c6eaf6adce
use quickcheck_macros::quickcheck;
mod commands;
mod format_conversions;
<<<<<<< HEAD
use nu_engine::EvaluationContext;
#[quickcheck]
fn quickcheck_parse(data: String) -> bool {
let (tokens, err) = nu_parser::lex(&data, 0, nu_parser::NewlineMode::Normal);
let (lite_block, err2) = nu_parser::parse_block(tokens);
if err.is_none() && err2.is_none() {
let context = EvaluationContext::basic();
let _ = nu_parser::classify_block(&lite_block, &context.scope);
=======
// use nu_engine::EvaluationContext;
#[quickcheck]
@ -36,7 +21,6 @@ fn quickcheck_parse(data: String) -> bool {
let _ = nu_parser::parse_block(&mut working_set, &lite_block, false);
}
>>>>>>> 9259a56a28f1dd3a4b720ad815aa19c6eaf6adce
}
true
}