Line data Source code
1 : // Copyright (C) 2020-2026 Free Software Foundation, Inc.
2 :
3 : // This file is part of GCC.
4 :
5 : // GCC is free software; you can redistribute it and/or modify it under
6 : // the terms of the GNU General Public License as published by the Free
7 : // Software Foundation; either version 3, or (at your option) any later
8 : // version.
9 :
10 : // GCC is distributed in the hope that it will be useful, but WITHOUT ANY
11 : // WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 : // FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
13 : // for more details.
14 :
15 : // You should have received a copy of the GNU General Public License
16 : // along with GCC; see the file COPYING3. If not see
17 : // <http://www.gnu.org/licenses/>.
18 :
19 : #include "rust-ast.h"
20 : #include "rust-expr.h"
21 : #include "rust-item.h"
22 : #include "rust-name-resolution-context.h"
23 : #include "rust-toplevel-name-resolver-2.0.h"
24 : #include "rust-early-name-resolver-2.0.h"
25 :
26 : namespace Rust {
27 : namespace Resolver2_0 {
28 :
29 : class GlobbingVisitor : public AST::DefaultASTVisitor
30 : {
31 : using AST::DefaultASTVisitor::visit;
32 :
33 : public:
34 16 : GlobbingVisitor (NameResolutionContext &ctx) : ctx (ctx) {}
35 :
36 : void go (AST::GlobContainer *container);
37 :
38 : void visit_crate_container (AST::Crate &crate);
39 : void visit_module_container (AST::Module &module);
40 : void visit_enum_container (AST::Enum &item);
41 :
42 : void visit (AST::Module &module) override;
43 : void visit (AST::MacroRulesDefinition ¯o) override;
44 : void visit (AST::Function &function) override;
45 : void visit (AST::StaticItem &static_item) override;
46 : void visit (AST::StructStruct &struct_item) override;
47 : void visit (AST::TupleStruct &tuple_struct) override;
48 : void visit (AST::Enum &enum_item) override;
49 : void visit (AST::Union &union_item) override;
50 : void visit (AST::ConstantItem &const_item) override;
51 : void visit (AST::ExternCrate &crate) override;
52 : void visit (AST::UseDeclaration &use) override;
53 :
54 : private:
55 : NameResolutionContext &ctx;
56 : };
57 :
58 : } // namespace Resolver2_0
59 : } // namespace Rust
|