From 55e2a478be04bdaba164ea92160e52a6fea5abe5 Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Sun, 28 Jan 2018 23:14:00 +0300 Subject: Reformat --- src/parser/event_parser/grammar/items/mod.rs | 5 +++-- src/parser/event_parser/grammar/items/structs.rs | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) (limited to 'src/parser') diff --git a/src/parser/event_parser/grammar/items/mod.rs b/src/parser/event_parser/grammar/items/mod.rs index 886c02d37..0a50fffc1 100644 --- a/src/parser/event_parser/grammar/items/mod.rs +++ b/src/parser/event_parser/grammar/items/mod.rs @@ -9,8 +9,9 @@ pub(super) fn mod_contents(p: &mut Parser, stop_on_r_curly: bool) { } } -pub(super) const ITEM_FIRST: TokenSet = - token_set![EXTERN_KW, MOD_KW, USE_KW, STRUCT_KW, ENUM_KW, FN_KW, PUB_KW, POUND]; +pub(super) const ITEM_FIRST: TokenSet = token_set![ + EXTERN_KW, MOD_KW, USE_KW, STRUCT_KW, ENUM_KW, FN_KW, PUB_KW, POUND +]; fn item(p: &mut Parser) { let item = p.start(); diff --git a/src/parser/event_parser/grammar/items/structs.rs b/src/parser/event_parser/grammar/items/structs.rs index 670406071..6e438413b 100644 --- a/src/parser/event_parser/grammar/items/structs.rs +++ b/src/parser/event_parser/grammar/items/structs.rs @@ -59,7 +59,7 @@ pub(super) fn enum_item(p: &mut Parser) { p.bump(); expressions::expr(p); } - _ => () + _ => (), } var.complete(p, ENUM_VARIANT); } else { -- cgit v1.2.3