From b937262c9b75a361b95a6a27260a71c737e035bf Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Tue, 21 Aug 2018 18:30:10 +0300 Subject: Module map implementation --- crates/libsyntax2/src/grammar.ron | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'crates/libsyntax2/src/grammar.ron') diff --git a/crates/libsyntax2/src/grammar.ron b/crates/libsyntax2/src/grammar.ron index abeffb2c3..8e644d3c4 100644 --- a/crates/libsyntax2/src/grammar.ron +++ b/crates/libsyntax2/src/grammar.ron @@ -218,7 +218,8 @@ Grammar( ast: { "File": ( collections: [ - ["functions", "FnDef"] + ["functions", "FnDef"], + ["modules", "Module"], ] ), "FnDef": ( traits: ["NameOwner", "AttrsOwner"] ), @@ -231,7 +232,12 @@ Grammar( "NamedField": ( traits: ["NameOwner", "AttrsOwner"] ), "EnumDef": ( traits: ["NameOwner", "AttrsOwner"] ), "TraitDef": ( traits: ["NameOwner", "AttrsOwner"] ), - "Module": ( traits: ["NameOwner", "AttrsOwner"] ), + "Module": ( + traits: ["NameOwner", "AttrsOwner"], + collections: [ + ["modules", "Module"] + ] + ), "ConstDef": ( traits: ["NameOwner", "AttrsOwner"] ), "StaticDef": ( traits: ["NameOwner", "AttrsOwner"] ), "TypeDef": ( traits: ["NameOwner", "AttrsOwner"] ), -- cgit v1.2.3