From e6f3790106fdfa2aaf6a0510c737fd05939345e7 Mon Sep 17 00:00:00 2001 From: Dylan MacKenzie Date: Fri, 23 Aug 2019 13:04:58 -0700 Subject: Add `BoxPat` variant --- crates/ra_syntax/src/grammar.ron | 3 +++ 1 file changed, 3 insertions(+) (limited to 'crates/ra_syntax/src/grammar.ron') diff --git a/crates/ra_syntax/src/grammar.ron b/crates/ra_syntax/src/grammar.ron index 4659192cd..1836862fe 100644 --- a/crates/ra_syntax/src/grammar.ron +++ b/crates/ra_syntax/src/grammar.ron @@ -158,6 +158,7 @@ Grammar( "DYN_TRAIT_TYPE", "REF_PAT", + "BOX_PAT", "BIND_PAT", "PLACEHOLDER_PAT", "PATH_PAT", @@ -523,6 +524,7 @@ Grammar( ), "RefPat": ( options: [ "Pat" ]), + "BoxPat": ( options: [ "Pat" ]), "BindPat": ( options: [ "Pat" ], traits: ["NameOwner"] @@ -552,6 +554,7 @@ Grammar( "Pat": ( enum: [ "RefPat", + "BoxPat", "BindPat", "PlaceholderPat", "PathPat", -- cgit v1.2.3