mirror of
https://github.com/nushell/nushell
synced 2024-12-27 05:23:11 +00:00
add source command
This commit is contained in:
parent
e1a0ad2987
commit
8ef16c6da6
1 changed files with 2 additions and 1 deletions
|
@ -1,5 +1,6 @@
|
|||
use crate::{
|
||||
lex, lite_parse,
|
||||
parse_keywords::parse_source,
|
||||
type_check::{math_result_type, type_compatible},
|
||||
LiteBlock, ParseError, Token, TokenContents,
|
||||
};
|
||||
|
@ -2585,7 +2586,7 @@ pub fn parse_statement(
|
|||
b"alias" => parse_alias(working_set, spans),
|
||||
b"module" => parse_module(working_set, spans),
|
||||
b"use" => parse_use(working_set, spans),
|
||||
b"source" => parse_use(working_set, spans),
|
||||
b"source" => parse_source(working_set, spans),
|
||||
_ => {
|
||||
let (expr, err) = parse_expression(working_set, spans);
|
||||
(Statement::Pipeline(Pipeline::from_vec(vec![expr])), err)
|
||||
|
|
Loading…
Reference in a new issue