Merge pull request #661 from jonathandturner/bump_compiler

Bump compiler
This commit is contained in:
Jonathan Turner 2019-09-13 14:44:13 +12:00 committed by GitHub
commit ea10d4dc0e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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(),
)),
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::ExternalCommand(external) => evaluate_external(external, scope, source),
RawExpression::Binary(binary) => {