This commit is contained in:
Tanishq Kancharla 2021-10-01 22:07:17 -04:00
parent e00755a2e9
commit adb92b970e
2 changed files with 9 additions and 11 deletions

View File

@ -2507,24 +2507,21 @@ pub fn parse_source(
let contents = std::fs::read(path); let contents = std::fs::read(path);
if let Ok(contents) = contents { if let Ok(contents) = contents {
// This will load the defs from the file into the
// working set, if it was a successful parse.
let (block, err) = parse( let (block, err) = parse(
working_set, working_set,
path.file_name().and_then(|x| x.to_str()), path.file_name().and_then(|x| x.to_str()),
&contents, &contents,
true, false,
); );
if let None = err { if let Some(_) = err {
// Successful parse // Unsuccessful parse of file
// What should I be doing here?
let block_id = working_set.add_block(block);
// return ( // return (
// // Successful parse
// // Why creating a pipeline here for only one expression?
// // Is there a way to only make this a declaration?
// Statement::Pipeline(Pipeline::from_vec(vec![Expression { // Statement::Pipeline(Pipeline::from_vec(vec![Expression {
// expr: Expr::Subexpression(block_id), // expr: Expr::Call(call),
// span: span(spans), // span: call_span,
// ty: Type::Unknown, // FIXME // ty: Type::Unknown,
// }])), // }])),
// None, // None,
// ); // );

1
example.nu Normal file
View File

@ -0,0 +1 @@
alias x = 4