summaryrefslogtreecommitdiff
path: root/dhall_syntax
diff options
context:
space:
mode:
authorNadrieril2019-08-27 22:35:33 +0200
committerNadrieril2019-08-27 22:35:33 +0200
commitcddb3b0a0270cf6d41bbaa1a0e01708e91a9673c (patch)
tree95762c307974eab19a8346646e6046e2ef55af9c /dhall_syntax
parent7b891800afa932660bc889e43c41c5d8f805cdc2 (diff)
s/token_rule/rule/
Diffstat (limited to 'dhall_syntax')
-rw-r--r--dhall_syntax/src/parser.rs40
1 files changed, 20 insertions, 20 deletions
diff --git a/dhall_syntax/src/parser.rs b/dhall_syntax/src/parser.rs
index 8facb3e..4da1dfc 100644
--- a/dhall_syntax/src/parser.rs
+++ b/dhall_syntax/src/parser.rs
@@ -328,7 +328,7 @@ macro_rules! make_parser {
});
(@body,
($($things:tt)*),
- token_rule!($name:ident<$o:ty>)
+ rule!($name:ident<$o:ty>)
) => ({
Ok(())
});
@@ -428,7 +428,7 @@ fn trim_indent(lines: &mut Vec<ParsedText>) {
}
make_parser! {
- token_rule!(EOI<()>);
+ rule!(EOI<()>);
rule!(simple_label<Label>;
captured_str!(s) => Label::from(s.trim().to_owned())
@@ -611,9 +611,9 @@ make_parser! {
}
);
- token_rule!(NaN<()>);
- token_rule!(minus_infinity_literal<()>);
- token_rule!(plus_infinity_literal<()>);
+ rule!(NaN<()>);
+ rule!(minus_infinity_literal<()>);
+ rule!(plus_infinity_literal<()>);
rule!(numeric_double_literal<core::Double>;
captured_str!(s) => {
@@ -762,7 +762,7 @@ make_parser! {
}
);
- token_rule!(missing<()>);
+ rule!(missing<()>);
rule!(import_type<ImportLocation<ParsedSubExpr>>; children!(
[missing(_)] => {
@@ -796,8 +796,8 @@ make_parser! {
crate::Import {mode: ImportMode::Code, location, hash: Some(h) },
));
- token_rule!(Text<()>);
- token_rule!(Location<()>);
+ rule!(Text<()>);
+ rule!(Location<()>);
rule!(import<ParsedSubExpr>; span; children!(
[import_hashed(imp)] => {
@@ -820,13 +820,13 @@ make_parser! {
},
));
- token_rule!(lambda<()>);
- token_rule!(forall<()>);
- token_rule!(arrow<()>);
- token_rule!(merge<()>);
- token_rule!(assert<()>);
- token_rule!(if_<()>);
- token_rule!(in_<()>);
+ rule!(lambda<()>);
+ rule!(forall<()>);
+ rule!(arrow<()>);
+ rule!(merge<()>);
+ rule!(assert<()>);
+ rule!(if_<()>);
+ rule!(in_<()>);
rule!(empty_list_literal<ParsedSubExpr>; span; children!(
[application_expression(e)] => {
@@ -877,8 +877,8 @@ make_parser! {
(name, None, expr),
));
- token_rule!(List<()>);
- token_rule!(Optional<()>);
+ rule!(List<()>);
+ rule!(Optional<()>);
rule!(operator_expression<ParsedSubExpr>; prec_climb!(
application_expression,
@@ -933,8 +933,8 @@ make_parser! {
}
));
- token_rule!(Some_<()>);
- token_rule!(toMap<()>);
+ rule!(Some_<()>);
+ rule!(toMap<()>);
rule!(application_expression<ParsedSubExpr>; children!(
[first_application_expression(e)] => e,
@@ -1048,7 +1048,7 @@ make_parser! {
},
));
- token_rule!(empty_union_type<()>);
+ rule!(empty_union_type<()>);
rule!(union_type_entry<(Label, Option<ParsedSubExpr>)>; children!(
[label(name), expression(expr)] => (name, Some(expr)),