1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
|
// Copyright (C) 2020-2025 Free Software Foundation, Inc.
// This file is part of GCC.
// GCC is free software; you can redistribute it and/or modify it under
// the terms of the GNU General Public License as published by the Free
// Software Foundation; either version 3, or (at your option) any later
// version.
// GCC is distributed in the hope that it will be useful, but WITHOUT ANY
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
// for more details.
// You should have received a copy of the GNU General Public License
// along with GCC; see the file COPYING3. If not see
// <http://www.gnu.org/licenses/>.
#ifndef RUST_HIR_PATH_H
#define RUST_HIR_PATH_H
#include "rust-hir-simple-path.h"
#include "rust-hir-type-no-bounds.h"
#include "rust-hir-pattern-abstract.h"
#include "rust-hir-expr-abstract.h"
namespace Rust {
namespace HIR {
// The "identifier" (not generic args) aspect of each path expression segment
class PathIdentSegment
{
std::string segment_name;
// TODO: should this have location info stored?
// only allow identifiers, "super", "self", "Self", "crate", or "$crate"
public:
PathIdentSegment (std::string segment_name)
: segment_name (std::move (segment_name))
{}
/* TODO: insert check in constructor for this? Or is this a semantic error
* best handled then? */
/* TODO: does this require visitor? pretty sure this isn't polymorphic, but
* not entirely sure */
// Creates an error PathIdentSegment.
static PathIdentSegment create_error () { return PathIdentSegment (""); }
// Returns whether PathIdentSegment is in an error state.
bool is_error () const { return segment_name.empty (); }
std::string as_string () const { return segment_name; }
};
// A binding of an identifier to a type used in generic arguments in paths
class GenericArgsBinding
{
Identifier identifier;
std::unique_ptr<Type> type;
location_t locus;
public:
// Returns whether binding is in an error state.
bool is_error () const
{
return type == nullptr;
// and also identifier is empty, but cheaper computation
}
// Creates an error state generic args binding.
static GenericArgsBinding create_error ()
{
return GenericArgsBinding ({""}, nullptr);
}
// Pointer type for type in constructor to enable polymorphism
GenericArgsBinding (Identifier ident, std::unique_ptr<Type> type_ptr,
location_t locus = UNDEF_LOCATION);
// Copy constructor has to deep copy the type as it is a unique pointer
GenericArgsBinding (GenericArgsBinding const &other);
// default destructor
~GenericArgsBinding () = default;
// Overload assignment operator to deep copy the pointed-to type
GenericArgsBinding &operator= (GenericArgsBinding const &other);
// move constructors
GenericArgsBinding (GenericArgsBinding &&other) = default;
GenericArgsBinding &operator= (GenericArgsBinding &&other) = default;
std::string as_string () const;
Identifier &get_identifier () { return identifier; }
const Identifier &get_identifier () const { return identifier; }
Type &get_type ()
{
rust_assert (type);
return *type;
}
const Type &get_type () const
{
rust_assert (type);
return *type;
}
location_t get_locus () const { return locus; }
};
class ConstGenericArg
{
// FIXME: Do we need to disambiguate or no? We should be able to disambiguate
// at name-resolution, hence no need for ambiguities here
public:
ConstGenericArg (std::unique_ptr<Expr> expression, location_t locus);
ConstGenericArg (const ConstGenericArg &other);
ConstGenericArg operator= (const ConstGenericArg &other);
std::unique_ptr<Expr> &get_expression () { return expression; }
private:
std::unique_ptr<Expr> expression;
location_t locus;
};
class GenericArgs
{
std::vector<Lifetime> lifetime_args;
std::vector<std::unique_ptr<Type> > type_args;
std::vector<GenericArgsBinding> binding_args;
std::vector<ConstGenericArg> const_args;
location_t locus;
public:
// Returns true if there are any generic arguments
bool has_generic_args () const
{
return !(lifetime_args.empty () && type_args.empty ()
&& binding_args.empty ());
}
GenericArgs (std::vector<Lifetime> lifetime_args,
std::vector<std::unique_ptr<Type> > type_args,
std::vector<GenericArgsBinding> binding_args,
std::vector<ConstGenericArg> const_args, location_t locus);
// copy constructor with vector clone
GenericArgs (GenericArgs const &other);
~GenericArgs () = default;
// overloaded assignment operator to vector clone
GenericArgs &operator= (GenericArgs const &other);
// move constructors
GenericArgs (GenericArgs &&other) = default;
GenericArgs &operator= (GenericArgs &&other) = default;
// Creates an empty GenericArgs (no arguments)
static GenericArgs create_empty (location_t locus = UNDEF_LOCATION)
{
return GenericArgs ({}, {}, {}, {}, locus);
}
bool is_empty () const;
std::string as_string () const;
std::vector<Lifetime> &get_lifetime_args () { return lifetime_args; }
const std::vector<Lifetime> &get_lifetime_args () const
{
return lifetime_args;
}
std::vector<std::unique_ptr<Type> > &get_type_args () { return type_args; }
std::vector<GenericArgsBinding> &get_binding_args () { return binding_args; }
std::vector<ConstGenericArg> &get_const_args () { return const_args; }
location_t get_locus () const { return locus; }
};
/* A segment of a path in expression, including an identifier aspect and maybe
* generic args */
class PathExprSegment
{
private:
Analysis::NodeMapping mappings;
PathIdentSegment segment_name;
GenericArgs generic_args;
location_t locus;
public:
PathExprSegment (Analysis::NodeMapping mappings,
PathIdentSegment segment_name, location_t locus,
GenericArgs generic_args);
PathExprSegment (PathExprSegment const &other);
PathExprSegment &operator= (PathExprSegment const &other);
// move constructors
PathExprSegment (PathExprSegment &&other) = default;
PathExprSegment &operator= (PathExprSegment &&other) = default;
std::string as_string () const;
location_t get_locus () const { return locus; }
PathIdentSegment &get_segment () { return segment_name; }
const PathIdentSegment &get_segment () const { return segment_name; }
GenericArgs &get_generic_args () { return generic_args; }
const Analysis::NodeMapping &get_mappings () const { return mappings; }
bool has_generic_args () const { return generic_args.has_generic_args (); }
};
// HIR node representing a pattern that involves a "path" - abstract base class
class PathPattern : public Pattern
{
std::vector<PathExprSegment> segments;
protected:
PathPattern (std::vector<PathExprSegment> segments)
: segments (std::move (segments))
{}
// Returns whether path has segments.
bool has_segments () const { return !segments.empty (); }
/* Converts path segments to their equivalent SimplePath segments if possible,
* and creates a SimplePath from them. */
AST::SimplePath
convert_to_simple_path (bool with_opening_scope_resolution) const;
public:
/* Returns whether the path is a single segment (excluding qualified path
* initial as segment). */
bool is_single_segment () const { return segments.size () == 1; }
std::string as_string () const override;
void iterate_path_segments (std::function<bool (PathExprSegment &)> cb);
size_t get_num_segments () const { return segments.size (); }
std::vector<PathExprSegment> &get_segments () { return segments; }
const std::vector<PathExprSegment> &get_segments () const { return segments; }
PathExprSegment &get_root_seg () { return segments.at (0); }
const PathExprSegment &get_final_segment () const { return segments.back (); }
PatternType get_pattern_type () const override final
{
return PatternType::PATH;
}
};
/* HIR node representing a path-in-expression pattern (path that allows generic
* arguments) */
class PathInExpression : public PathPattern, public PathExpr
{
bool has_opening_scope_resolution;
location_t locus;
public:
std::string as_string () const override;
// Constructor
PathInExpression (Analysis::NodeMapping mappings,
std::vector<PathExprSegment> path_segments,
location_t locus = UNDEF_LOCATION,
bool has_opening_scope_resolution = false,
std::vector<AST::Attribute> outer_attrs
= std::vector<AST::Attribute> ());
// Creates an error state path in expression.
static PathInExpression create_error ()
{
return PathInExpression (Analysis::NodeMapping::get_error (),
std::vector<PathExprSegment> ());
}
// Returns whether path in expression is in an error state.
bool is_error () const { return !has_segments (); }
/* Converts PathInExpression to SimplePath if possible (i.e. no generic
* arguments). Otherwise returns an empty SimplePath. */
AST::SimplePath as_simple_path () const
{
/* delegate to parent class as can't access segments. however,
* QualifiedPathInExpression conversion to simple path wouldn't make sense,
* so the method in the parent class should be protected, not public. Have
* to pass in opening scope resolution as parent class has no access to it.
*/
return convert_to_simple_path (has_opening_scope_resolution);
}
location_t get_locus () const override final { return locus; }
void accept_vis (HIRFullVisitor &vis) override;
void accept_vis (HIRExpressionVisitor &vis) override;
void accept_vis (HIRPatternVisitor &vis) override;
bool opening_scope_resolution () { return has_opening_scope_resolution; }
bool is_self () const;
const Analysis::NodeMapping &get_mappings () const override final
{
return mappings;
}
protected:
/* Use covariance to implement clone function as returning this object rather
* than base */
PathInExpression *clone_pattern_impl () const override
{
return new PathInExpression (*this);
}
/* Use covariance to implement clone function as returning this object rather
* than base */
PathInExpression *clone_expr_without_block_impl () const override
{
return new PathInExpression (*this);
}
};
/* Base class for segments used in type paths - not abstract (represents an
* ident-only segment) */
class TypePathSegment
{
public:
enum SegmentType
{
REG,
GENERIC,
FUNCTION
};
private:
Analysis::NodeMapping mappings;
tl::optional<PathIdentSegment> ident_segment;
tl::optional<LangItem::Kind> lang_item;
location_t locus;
protected:
bool has_separating_scope_resolution;
SegmentType type;
public:
// Clone function implementation - not pure virtual as overrided by subclasses
virtual TypePathSegment *clone_type_path_segment_impl () const
{
return new TypePathSegment (*this);
}
public:
virtual ~TypePathSegment () {}
virtual SegmentType get_type () const { return SegmentType::REG; }
// Unique pointer custom clone function
std::unique_ptr<TypePathSegment> clone_type_path_segment () const
{
return std::unique_ptr<TypePathSegment> (clone_type_path_segment_impl ());
}
TypePathSegment (Analysis::NodeMapping mappings,
PathIdentSegment ident_segment,
bool has_separating_scope_resolution, location_t locus);
TypePathSegment (Analysis::NodeMapping mappings, LangItem::Kind lang_item,
location_t locus);
TypePathSegment (Analysis::NodeMapping mappings, std::string segment_name,
bool has_separating_scope_resolution, location_t locus);
virtual std::string as_string () const
{
if (ident_segment)
return ident_segment->as_string ();
return LangItem::PrettyString (*lang_item);
}
/* Returns whether the type path segment is in an error state. May be virtual
* in future. */
bool is_error () const
{
rust_assert (ident_segment);
return ident_segment->is_error ();
}
/* Returns whether segment is identifier only (as opposed to generic args or
* function). Overriden in derived classes with other segments. */
virtual bool is_ident_only () const { return true; }
location_t get_locus () const { return locus; }
// not pure virtual as class not abstract
virtual void accept_vis (HIRFullVisitor &vis);
const Analysis::NodeMapping &get_mappings () const { return mappings; }
const PathIdentSegment &get_ident_segment () const
{
rust_assert (ident_segment);
return *ident_segment;
}
const LangItem::Kind &get_lang_item () const
{
rust_assert (lang_item);
return *lang_item;
}
bool is_generic_segment () const
{
return get_type () == SegmentType::GENERIC;
}
bool is_lang_item () const { return lang_item.has_value (); }
};
// Segment used in type path with generic args
class TypePathSegmentGeneric : public TypePathSegment
{
GenericArgs generic_args;
public:
bool has_generic_args () const { return generic_args.has_generic_args (); }
bool is_ident_only () const override { return false; }
// Constructor with PathIdentSegment and GenericArgs
TypePathSegmentGeneric (Analysis::NodeMapping mappings,
PathIdentSegment ident_segment,
bool has_separating_scope_resolution,
GenericArgs generic_args, location_t locus);
TypePathSegmentGeneric (Analysis::NodeMapping mappings,
LangItem::Kind lang_item, GenericArgs generic_args,
location_t locus);
// Constructor from segment name and all args
TypePathSegmentGeneric (Analysis::NodeMapping mappings,
std::string segment_name,
bool has_separating_scope_resolution,
std::vector<Lifetime> lifetime_args,
std::vector<std::unique_ptr<Type> > type_args,
std::vector<GenericArgsBinding> binding_args,
std::vector<ConstGenericArg> const_args,
location_t locus);
std::string as_string () const override;
void accept_vis (HIRFullVisitor &vis) override;
GenericArgs &get_generic_args () { return generic_args; }
virtual SegmentType get_type () const override final
{
return SegmentType::GENERIC;
}
// Use covariance to override base class method
TypePathSegmentGeneric *clone_type_path_segment_impl () const override
{
return new TypePathSegmentGeneric (*this);
}
};
// A function as represented in a type path
class TypePathFunction
{
std::vector<std::unique_ptr<Type> > inputs;
std::unique_ptr<Type> return_type;
public:
// Returns whether the return type of the function has been specified.
bool has_return_type () const { return return_type != nullptr; }
// Returns whether the function has inputs.
bool has_inputs () const { return !inputs.empty (); }
// Constructor
TypePathFunction (std::vector<std::unique_ptr<Type> > inputs,
std::unique_ptr<Type> type);
// Copy constructor with clone
TypePathFunction (TypePathFunction const &other);
~TypePathFunction () = default;
// Overloaded assignment operator to clone type
TypePathFunction &operator= (TypePathFunction const &other);
// move constructors
TypePathFunction (TypePathFunction &&other) = default;
TypePathFunction &operator= (TypePathFunction &&other) = default;
std::string as_string () const;
const std::vector<std::unique_ptr<Type> > &get_params () const
{
return inputs;
};
std::vector<std::unique_ptr<Type> > &get_params () { return inputs; };
const Type &get_return_type () const { return *return_type; };
Type &get_return_type () { return *return_type; };
};
// Segment used in type path with a function argument
class TypePathSegmentFunction : public TypePathSegment
{
TypePathFunction function_path;
public:
// Constructor with PathIdentSegment and TypePathFn
TypePathSegmentFunction (Analysis::NodeMapping mappings,
PathIdentSegment ident_segment,
bool has_separating_scope_resolution,
TypePathFunction function_path, location_t locus);
// Constructor with segment name and TypePathFn
TypePathSegmentFunction (Analysis::NodeMapping mappings,
std::string segment_name,
bool has_separating_scope_resolution,
TypePathFunction function_path, location_t locus);
std::string as_string () const override;
bool is_ident_only () const override { return false; }
void accept_vis (HIRFullVisitor &vis) override;
SegmentType get_type () const override final { return SegmentType::FUNCTION; }
TypePathFunction &get_function_path () { return function_path; }
// Use covariance to override base class method
TypePathSegmentFunction *clone_type_path_segment_impl () const override
{
return new TypePathSegmentFunction (*this);
}
};
// Path used inside types
class TypePath : public TypeNoBounds
{
public:
bool has_opening_scope_resolution;
std::vector<std::unique_ptr<TypePathSegment> > segments;
protected:
/* Use covariance to implement clone function as returning this object rather
* than base */
TypePath *clone_type_impl () const override { return new TypePath (*this); }
/* Use covariance to implement clone function as returning this object rather
* than base */
TypePath *clone_type_no_bounds_impl () const override
{
return new TypePath (*this);
}
public:
/* Returns whether the TypePath has an opening scope resolution operator (i.e.
* is global path or crate-relative path, not module-relative) */
bool has_opening_scope_resolution_op () const
{
return has_opening_scope_resolution;
}
// Returns whether the TypePath is in an invalid state.
bool is_error () const { return segments.empty (); }
// Creates an error state TypePath.
static TypePath create_error ()
{
return TypePath (Analysis::NodeMapping::get_error (),
std::vector<std::unique_ptr<TypePathSegment> > (),
UNDEF_LOCATION);
}
// Constructor
TypePath (Analysis::NodeMapping mappings,
std::vector<std::unique_ptr<TypePathSegment> > segments,
location_t locus, bool has_opening_scope_resolution = false);
// Copy constructor with vector clone
TypePath (TypePath const &other);
// Overloaded assignment operator with clone
TypePath &operator= (TypePath const &other);
// move constructors
TypePath (TypePath &&other) = default;
TypePath &operator= (TypePath &&other) = default;
std::string as_string () const override;
/* Converts TypePath to SimplePath if possible (i.e. no generic or function
* arguments). Otherwise returns an empty SimplePath. */
AST::SimplePath as_simple_path () const;
// Creates a trait bound with a clone of this type path as its only element.
std::unique_ptr<TraitBound> to_trait_bound (bool in_parens) const override;
void accept_vis (HIRFullVisitor &vis) override;
void accept_vis (HIRTypeVisitor &vis) override;
size_t get_num_segments () const { return segments.size (); }
std::vector<std::unique_ptr<TypePathSegment> > &get_segments ()
{
return segments;
}
TypePathSegment &get_final_segment () { return *segments.back (); }
};
class QualifiedPathType
{
std::unique_ptr<Type> type;
std::unique_ptr<TypePath> trait;
location_t locus;
Analysis::NodeMapping mappings;
public:
// Constructor
QualifiedPathType (Analysis::NodeMapping mappings, std::unique_ptr<Type> type,
std::unique_ptr<TypePath> trait, location_t locus);
// Copy constructor uses custom deep copy for Type to preserve polymorphism
QualifiedPathType (QualifiedPathType const &other);
// default destructor
~QualifiedPathType () = default;
// overload assignment operator to use custom clone method
QualifiedPathType &operator= (QualifiedPathType const &other);
// move constructor
QualifiedPathType (QualifiedPathType &&other) = default;
QualifiedPathType &operator= (QualifiedPathType &&other) = default;
// Returns whether the qualified path type has a rebind as clause.
bool has_as_clause () const { return trait != nullptr; }
std::string as_string () const;
location_t get_locus () const { return locus; }
Analysis::NodeMapping get_mappings () const { return mappings; }
Type &get_type ()
{
rust_assert (type);
return *type;
}
TypePath &get_trait () { return *trait; }
bool trait_has_generic_args () const;
GenericArgs &get_trait_generic_args ();
};
/* HIR node representing a qualified path-in-expression pattern (path that
* allows specifying trait functions) */
class QualifiedPathInExpression : public PathPattern, public PathExpr
{
QualifiedPathType path_type;
location_t locus;
public:
std::string as_string () const override;
QualifiedPathInExpression (Analysis::NodeMapping mappings,
QualifiedPathType qual_path_type,
std::vector<PathExprSegment> path_segments,
location_t locus = UNDEF_LOCATION,
std::vector<AST::Attribute> outer_attrs
= std::vector<AST::Attribute> ());
location_t get_locus () const override final { return locus; }
void accept_vis (HIRFullVisitor &vis) override;
void accept_vis (HIRExpressionVisitor &vis) override;
void accept_vis (HIRPatternVisitor &vis) override;
QualifiedPathType &get_path_type () { return path_type; }
location_t get_locus () { return locus; }
const Analysis::NodeMapping &get_mappings () const override final
{
return mappings;
}
protected:
/* Use covariance to implement clone function as returning this object rather
* than base */
QualifiedPathInExpression *clone_pattern_impl () const override
{
return new QualifiedPathInExpression (*this);
}
/* Use covariance to implement clone function as returning this object rather
* than base */
QualifiedPathInExpression *clone_expr_without_block_impl () const override
{
return new QualifiedPathInExpression (*this);
}
};
/* Represents a qualified path in a type; used for disambiguating trait function
* calls */
class QualifiedPathInType : public TypeNoBounds
{
QualifiedPathType path_type;
std::unique_ptr<TypePathSegment> associated_segment;
std::vector<std::unique_ptr<TypePathSegment> > segments;
protected:
/* Use covariance to implement clone function as returning this object rather
* than base */
QualifiedPathInType *clone_type_impl () const override
{
return new QualifiedPathInType (*this);
}
/* Use covariance to implement clone function as returning this object rather
* than base */
QualifiedPathInType *clone_type_no_bounds_impl () const override
{
return new QualifiedPathInType (*this);
}
public:
QualifiedPathInType (
Analysis::NodeMapping mappings, QualifiedPathType qual_path_type,
std::unique_ptr<TypePathSegment> associated_segment,
std::vector<std::unique_ptr<TypePathSegment> > path_segments,
location_t locus = UNDEF_LOCATION);
// Copy constructor with vector clone
QualifiedPathInType (QualifiedPathInType const &other);
// Overloaded assignment operator with vector clone
QualifiedPathInType &operator= (QualifiedPathInType const &other);
// move constructors
QualifiedPathInType (QualifiedPathInType &&other) = default;
QualifiedPathInType &operator= (QualifiedPathInType &&other) = default;
std::string as_string () const override;
void accept_vis (HIRFullVisitor &vis) override;
void accept_vis (HIRTypeVisitor &vis) override;
QualifiedPathType &get_path_type () { return path_type; }
TypePathSegment &get_associated_segment () { return *associated_segment; }
std::vector<std::unique_ptr<TypePathSegment> > &get_segments ()
{
return segments;
}
};
} // namespace HIR
} // namespace Rust
#endif
|