Branch data Line data Source code
1 : : // Copyright (C) 2020-2024 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 : : #ifndef RUST_AST_RESOLVE_STRUCT_EXPR_FIELD
20 : : #define RUST_AST_RESOLVE_STRUCT_EXPR_FIELD
21 : :
22 : : #include "rust-ast-resolve-base.h"
23 : :
24 : : namespace Rust {
25 : : namespace Resolver {
26 : :
27 : : // this resolves values being assigned not that the field actually exists yet.
28 : :
29 : 1545 : class ResolveStructExprField : public ResolverBase
30 : : {
31 : : using Rust::Resolver::ResolverBase::visit;
32 : :
33 : : public:
34 : : static void go (AST::StructExprField &field, const CanonicalPath &prefix,
35 : : const CanonicalPath &canonical_prefix);
36 : :
37 : : void visit (AST::StructExprFieldIdentifierValue &field) override;
38 : :
39 : : void visit (AST::StructExprFieldIndexValue &field) override;
40 : :
41 : : void visit (AST::StructExprFieldIdentifier &field) override;
42 : :
43 : : private:
44 : : ResolveStructExprField (const CanonicalPath &prefix,
45 : : const CanonicalPath &canonical_prefix);
46 : :
47 : : const CanonicalPath &prefix;
48 : : const CanonicalPath &canonical_prefix;
49 : : };
50 : :
51 : : } // namespace Resolver
52 : : } // namespace Rust
53 : :
54 : : #endif // RUST_AST_RESOLVE_STRUCT_EXPR_FIELD
|