summaryrefslogtreecommitdiff
path: root/dhall_generator/src/dhall_expr.rs
diff options
context:
space:
mode:
Diffstat (limited to 'dhall_generator/src/dhall_expr.rs')
-rw-r--r--dhall_generator/src/dhall_expr.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/dhall_generator/src/dhall_expr.rs b/dhall_generator/src/dhall_expr.rs
index 1eb4580..1ee4d1a 100644
--- a/dhall_generator/src/dhall_expr.rs
+++ b/dhall_generator/src/dhall_expr.rs
@@ -62,6 +62,9 @@ fn dhall_to_tokenstream(
NaturalLit(n) => {
quote! { dhall_core::Expr::NaturalLit(#n) }
}
+ BoolLit(b) => {
+ quote! { dhall_core::Expr::BoolLit(#b) }
+ }
EmptyOptionalLit(x) => {
let x = dhall_to_tokenstream_bx(x, ctx);
quote! { dhall_core::Expr::EmptyOptionalLit(#x) }