summaryrefslogtreecommitdiff
path: root/dhall_parser/build.rs
diff options
context:
space:
mode:
authorNadrieril2019-04-04 21:43:41 +0200
committerNadrieril2019-04-04 21:43:41 +0200
commit3e4b2dcb8c371045737901c0d49f9d9403109ea0 (patch)
treeaa218fd266112604a63390e8a45b3cef0c84f3b6 /dhall_parser/build.rs
parent08596e55a3e71f2fd636494aaa232e1cf476e4ac (diff)
Get keyword rule from upstream
Diffstat (limited to 'dhall_parser/build.rs')
-rw-r--r--dhall_parser/build.rs7
1 files changed, 0 insertions, 7 deletions
diff --git a/dhall_parser/build.rs b/dhall_parser/build.rs
index 4e75181..615a55c 100644
--- a/dhall_parser/build.rs
+++ b/dhall_parser/build.rs
@@ -42,13 +42,6 @@ fn main() -> std::io::Result<()> {
)?;
writeln!(
&mut file,
- "keyword = _{{
- let_ | in_ | if_ | then
- | else_ | Infinity | NaN
- }}"
- )?;
- writeln!(
- &mut file,
"final_expression = ${{ SOI ~ complete_expression ~ EOI }}"
)?;