Bump compiler

This commit is contained in:
Jonathan Turner 2019-09-13 13:54:17 +12:00
parent 970cc3c24d
commit b11a4535bd
2 changed files with 4 additions and 2 deletions

View file

@ -1 +1 @@
nightly-2019-08-30 nightly-2019-09-11

View file

@ -45,7 +45,9 @@ pub(crate) fn evaluate_baseline_expr(
expr.span(), expr.span(),
)), )),
RawExpression::FilePath(path) => Ok(Value::path(path.clone()).tagged(expr.span())), RawExpression::FilePath(path) => Ok(Value::path(path.clone()).tagged(expr.span())),
RawExpression::Synthetic(hir::Synthetic::String(s)) => Ok(Value::string(s).tagged_unknown()), RawExpression::Synthetic(hir::Synthetic::String(s)) => {
Ok(Value::string(s).tagged_unknown())
}
RawExpression::Variable(var) => evaluate_reference(var, scope, source), RawExpression::Variable(var) => evaluate_reference(var, scope, source),
RawExpression::ExternalCommand(external) => evaluate_external(external, scope, source), RawExpression::ExternalCommand(external) => evaluate_external(external, scope, source),
RawExpression::Binary(binary) => { RawExpression::Binary(binary) => {