diff options
author | Nadrieril | 2019-08-03 22:15:49 +0200 |
---|---|---|
committer | Nadrieril | 2019-08-03 22:15:49 +0200 |
commit | b85967fbe27505ae932be3b640dff5260fd32662 (patch) | |
tree | 03163b62a93c92041937cf47d4ed41074a109ef2 /dhall_syntax | |
parent | 2ad5973a32099ad8f79f247adc9d03340e2df4ab (diff) |
Update dhall-lang submodule
Diffstat (limited to 'dhall_syntax')
-rw-r--r-- | dhall_syntax/src/parser.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/dhall_syntax/src/parser.rs b/dhall_syntax/src/parser.rs index d8bd957..9d9a374 100644 --- a/dhall_syntax/src/parser.rs +++ b/dhall_syntax/src/parser.rs @@ -878,6 +878,7 @@ make_parser! { rule!(selector<Either<Label, Vec<Label>>>; children!( [label(l)] => Either::Left(l), [labels(ls)] => Either::Right(ls), + [expression(e)] => unimplemented!("selection by expression"), // TODO )); rule!(labels<Vec<Label>>; children!( |