Branch data Line data Source code
1 : : /* General AST-related method implementations for Rust frontend.
2 : : Copyright (C) 2009-2024 Free Software Foundation, Inc.
3 : :
4 : : This file is part of GCC.
5 : :
6 : : GCC is free software; you can redistribute it and/or modify it under
7 : : the terms of the GNU General Public License as published by the Free
8 : : Software Foundation; either version 3, or (at your option) any later
9 : : version.
10 : :
11 : : GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 : : WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 : : FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 : : for more details.
15 : :
16 : : You should have received a copy of the GNU General Public License
17 : : along with GCC; see the file COPYING3. If not see
18 : : <http://www.gnu.org/licenses/>. */
19 : :
20 : : #include "rust-ast.h"
21 : : #include "optional.h"
22 : : #include "rust-builtin-ast-nodes.h"
23 : : #include "rust-system.h"
24 : : #include "rust-ast-full.h"
25 : : #include "rust-diagnostics.h"
26 : : #include "rust-ast-visitor.h"
27 : : #include "rust-macro.h"
28 : : #include "rust-session-manager.h"
29 : : #include "rust-lex.h"
30 : : #include "rust-parse.h"
31 : : #include "rust-operators.h"
32 : : #include "rust-dir-owner.h"
33 : : #include "rust-attribute-values.h"
34 : :
35 : : /* Compilation unit used for various AST-related functions that would make
36 : : * the headers too long if they were defined inline and don't receive any
37 : : * benefits from being defined inline because they are virtual. Also used
38 : : * for various other stuff. */
39 : :
40 : : namespace Rust {
41 : : namespace AST {
42 : :
43 : 19101 : SingleASTNode::SingleASTNode (SingleASTNode const &other)
44 : : {
45 : 19101 : kind = other.kind;
46 : 19101 : switch (kind)
47 : : {
48 : 8811 : case EXPRESSION:
49 : 8811 : expr = other.expr->clone_expr ();
50 : 8811 : break;
51 : :
52 : 8165 : case ITEM:
53 : 8165 : item = other.item->clone_item ();
54 : 8165 : break;
55 : :
56 : 1800 : case STMT:
57 : 1800 : stmt = other.stmt->clone_stmt ();
58 : 1800 : break;
59 : :
60 : 15 : case EXTERN:
61 : 15 : external_item = other.external_item->clone_external_item ();
62 : 15 : break;
63 : :
64 : 215 : case ASSOC_ITEM:
65 : 215 : assoc_item = other.assoc_item->clone_associated_item ();
66 : 215 : break;
67 : :
68 : 95 : case TYPE:
69 : 95 : type = other.type->clone_type ();
70 : 95 : break;
71 : : }
72 : 19101 : }
73 : :
74 : : SingleASTNode
75 : 0 : SingleASTNode::operator= (SingleASTNode const &other)
76 : : {
77 : 0 : kind = other.kind;
78 : 0 : switch (kind)
79 : : {
80 : 0 : case EXPRESSION:
81 : 0 : expr = other.expr->clone_expr ();
82 : 0 : break;
83 : :
84 : 0 : case ITEM:
85 : 0 : item = other.item->clone_item ();
86 : 0 : break;
87 : :
88 : 0 : case STMT:
89 : 0 : stmt = other.stmt->clone_stmt ();
90 : 0 : break;
91 : :
92 : 0 : case EXTERN:
93 : 0 : external_item = other.external_item->clone_external_item ();
94 : 0 : break;
95 : :
96 : 0 : case ASSOC_ITEM:
97 : 0 : assoc_item = other.assoc_item->clone_associated_item ();
98 : 0 : break;
99 : :
100 : 0 : case TYPE:
101 : 0 : type = other.type->clone_type ();
102 : 0 : break;
103 : : }
104 : 0 : return *this;
105 : : }
106 : :
107 : : void
108 : 0 : SingleASTNode::accept_vis (ASTVisitor &vis)
109 : : {
110 : 0 : switch (kind)
111 : : {
112 : 0 : case EXPRESSION:
113 : 0 : expr->accept_vis (vis);
114 : 0 : break;
115 : :
116 : 0 : case ITEM:
117 : 0 : item->accept_vis (vis);
118 : 0 : break;
119 : :
120 : 0 : case STMT:
121 : 0 : stmt->accept_vis (vis);
122 : 0 : break;
123 : :
124 : 0 : case EXTERN:
125 : 0 : external_item->accept_vis (vis);
126 : 0 : break;
127 : :
128 : 0 : case ASSOC_ITEM:
129 : 0 : assoc_item->accept_vis (vis);
130 : 0 : break;
131 : :
132 : 0 : case TYPE:
133 : 0 : type->accept_vis (vis);
134 : 0 : break;
135 : : }
136 : 0 : }
137 : :
138 : : bool
139 : 5781 : SingleASTNode::is_error ()
140 : : {
141 : 5781 : switch (kind)
142 : : {
143 : 1680 : case EXPRESSION:
144 : 1680 : return expr == nullptr;
145 : 3267 : case ITEM:
146 : 3267 : return item == nullptr;
147 : 723 : case STMT:
148 : 723 : return stmt == nullptr;
149 : 6 : case EXTERN:
150 : 6 : return external_item == nullptr;
151 : 86 : case ASSOC_ITEM:
152 : 86 : return assoc_item == nullptr;
153 : 19 : case TYPE:
154 : 19 : return type == nullptr;
155 : : }
156 : :
157 : 0 : rust_unreachable ();
158 : : return true;
159 : : }
160 : :
161 : : std::string
162 : 0 : SingleASTNode::as_string () const
163 : : {
164 : 0 : switch (kind)
165 : : {
166 : 0 : case EXPRESSION:
167 : 0 : return "Expr: " + expr->as_string ();
168 : 0 : case ITEM:
169 : 0 : return "Item: " + item->as_string ();
170 : 0 : case STMT:
171 : 0 : return "Stmt: " + stmt->as_string ();
172 : 0 : case EXTERN:
173 : 0 : return "External Item: " + external_item->as_string ();
174 : 0 : case ASSOC_ITEM:
175 : 0 : return "Associated Item: " + assoc_item->as_string ();
176 : 0 : case TYPE:
177 : 0 : return "Type: " + type->as_string ();
178 : : }
179 : :
180 : 0 : rust_unreachable ();
181 : : return "";
182 : : }
183 : :
184 : : std::string
185 : 0 : Crate::as_string () const
186 : : {
187 : 0 : rust_debug ("beginning crate recursive as-string");
188 : :
189 : 0 : std::string str ("Crate: ");
190 : :
191 : : // inner attributes
192 : 0 : str += append_attributes (inner_attrs, INNER);
193 : :
194 : : // items
195 : 0 : str += "\n items: ";
196 : 0 : if (items.empty ())
197 : : {
198 : 0 : str += "none";
199 : : }
200 : : else
201 : : {
202 : 0 : for (const auto &item : items)
203 : : {
204 : : // DEBUG: null pointer check
205 : 0 : if (item == nullptr)
206 : : {
207 : 0 : rust_debug ("something really terrible has gone wrong - "
208 : : "null pointer item in crate.");
209 : 0 : return "NULL_POINTER_MARK";
210 : : }
211 : :
212 : 0 : str += "\n " + item->as_string ();
213 : : }
214 : : }
215 : :
216 : 0 : return str + "\n";
217 : 0 : }
218 : :
219 : : std::string
220 : 568 : Attribute::as_string () const
221 : : {
222 : 568 : std::string path_str = path.as_string ();
223 : 568 : if (attr_input == nullptr)
224 : 0 : return path_str;
225 : : else
226 : 568 : return path_str + attr_input->as_string ();
227 : 568 : }
228 : :
229 : : bool
230 : 2608 : Attribute::is_derive () const
231 : : {
232 : 4975 : return has_attr_input () && get_path () == "derive";
233 : : }
234 : :
235 : : /**
236 : : * Returns a list of traits to derive from within a given attribute.
237 : : *
238 : : * @param attrs The attributes on the item to derive
239 : : */
240 : : std::vector<std::reference_wrapper<AST::SimplePath>>
241 : 25 : Attribute::get_traits_to_derive ()
242 : : {
243 : 25 : rust_assert (this->is_derive ());
244 : :
245 : 25 : this->parse_attr_to_meta_item ();
246 : 25 : std::vector<std::reference_wrapper<AST::SimplePath>> result;
247 : 25 : auto &input = get_attr_input ();
248 : 25 : switch (input.get_attr_input_type ())
249 : : {
250 : 25 : case AST::AttrInput::META_ITEM: {
251 : 25 : auto &meta = static_cast<AST::AttrInputMetaItemContainer &> (input);
252 : 49 : for (auto ¤t : meta.get_items ())
253 : : {
254 : : // HACK: Find a better way to achieve the downcast.
255 : 24 : switch (current->get_kind ())
256 : : {
257 : 24 : case AST::MetaItemInner::Kind::MetaItem: {
258 : : // Let raw pointer go out of scope without freeing, it doesn't
259 : : // own the data anyway
260 : 24 : auto meta_item
261 : 24 : = static_cast<AST::MetaItem *> (current.get ());
262 : 24 : switch (meta_item->get_item_kind ())
263 : : {
264 : 0 : case AST::MetaItem::ItemKind::Path: {
265 : 0 : auto path
266 : : = static_cast<AST::MetaItemPath *> (meta_item);
267 : 0 : result.push_back (path->get_path ());
268 : : }
269 : 0 : break;
270 : 24 : case AST::MetaItem::ItemKind::Word: {
271 : 24 : auto word = static_cast<AST::MetaWord *> (meta_item);
272 : : // Convert current word to path
273 : 24 : current
274 : 48 : = make_unique<AST::MetaItemPath> (AST::MetaItemPath (
275 : 48 : AST::SimplePath (word->get_ident ())));
276 : 24 : auto path
277 : 24 : = static_cast<AST::MetaItemPath *> (current.get ());
278 : :
279 : 24 : result.push_back (path->get_path ());
280 : : }
281 : 24 : break;
282 : 0 : case AST::MetaItem::ItemKind::ListPaths:
283 : 0 : case AST::MetaItem::ItemKind::NameValueStr:
284 : 0 : case AST::MetaItem::ItemKind::PathLit:
285 : 0 : case AST::MetaItem::ItemKind::Seq:
286 : 0 : case AST::MetaItem::ItemKind::ListNameValueStr:
287 : 0 : default:
288 : 0 : gcc_unreachable ();
289 : 24 : break;
290 : : }
291 : : }
292 : 24 : break;
293 : 0 : case AST::MetaItemInner::Kind::LitExpr:
294 : 0 : default:
295 : 0 : gcc_unreachable ();
296 : 24 : break;
297 : : }
298 : : }
299 : : }
300 : : break;
301 : 0 : case AST::AttrInput::TOKEN_TREE:
302 : 0 : case AST::AttrInput::LITERAL:
303 : 0 : case AST::AttrInput::MACRO:
304 : 0 : rust_unreachable ();
305 : 25 : break;
306 : : }
307 : 25 : return result;
308 : : }
309 : :
310 : : // Copy constructor must deep copy attr_input as unique pointer
311 : 14681 : Attribute::Attribute (Attribute const &other)
312 : 14681 : : path (other.path), locus (other.locus)
313 : : {
314 : : // guard to protect from null pointer dereference
315 : 14681 : if (other.attr_input != nullptr)
316 : 7783 : attr_input = other.attr_input->clone_attr_input ();
317 : 14681 : }
318 : :
319 : : // overload assignment operator to use custom clone method
320 : : Attribute &
321 : 50 : Attribute::operator= (Attribute const &other)
322 : : {
323 : 50 : path = other.path;
324 : 50 : locus = other.locus;
325 : : // guard to protect from null pointer dereference
326 : 50 : if (other.attr_input != nullptr)
327 : 43 : attr_input = other.attr_input->clone_attr_input ();
328 : : else
329 : 7 : attr_input = nullptr;
330 : :
331 : 50 : return *this;
332 : : }
333 : :
334 : : std::string
335 : 0 : DelimTokenTree::as_string () const
336 : : {
337 : 0 : std::string start_delim;
338 : 0 : std::string end_delim;
339 : 0 : switch (delim_type)
340 : : {
341 : 0 : case PARENS:
342 : 0 : start_delim = "(";
343 : 0 : end_delim = ")";
344 : 0 : break;
345 : 0 : case SQUARE:
346 : 0 : start_delim = "[";
347 : 0 : end_delim = "]";
348 : 0 : break;
349 : 0 : case CURLY:
350 : 0 : start_delim = "{";
351 : 0 : end_delim = "}";
352 : 0 : break;
353 : 0 : default:
354 : 0 : rust_debug ("Invalid delimiter type, "
355 : : "Should be PARENS, SQUARE, or CURLY.");
356 : 0 : return "Invalid delimiter type";
357 : : }
358 : 0 : std::string str = start_delim;
359 : 0 : if (!token_trees.empty ())
360 : : {
361 : 0 : for (const auto &tree : token_trees)
362 : : {
363 : : // DEBUG: null pointer check
364 : 0 : if (tree == nullptr)
365 : : {
366 : 0 : rust_debug (
367 : : "something really terrible has gone wrong - null pointer "
368 : : "token tree in delim token tree.");
369 : 0 : return "NULL_POINTER_MARK";
370 : : }
371 : :
372 : 0 : str += tree->as_string ();
373 : : }
374 : : }
375 : 0 : str += end_delim;
376 : :
377 : 0 : return str;
378 : 0 : }
379 : :
380 : : std::string
381 : 69516 : Token::as_string () const
382 : : {
383 : 69516 : if (tok_ref->has_str ())
384 : : {
385 : 19884 : std::string str = tok_ref->get_str ();
386 : :
387 : 19884 : std::string quote = is_string_lit () ? "\"" : "";
388 : 19884 : return quote + str + quote;
389 : 19884 : }
390 : : else
391 : : {
392 : 49632 : return tok_ref->get_token_description ();
393 : : }
394 : : }
395 : :
396 : : std::string
397 : 32296 : SimplePathSegment::as_string () const
398 : : {
399 : 32296 : return segment_name;
400 : : }
401 : :
402 : : const std::string
403 : 10251 : SimplePath::as_string () const
404 : : {
405 : 10251 : std::string path;
406 : 10251 : if (opening_scope_resolution)
407 : 0 : path = "::";
408 : :
409 : : // crappy hack because doing proper for loop would be more code
410 : 10251 : bool first_time = true;
411 : 20645 : for (const auto &segment : segments)
412 : : {
413 : 10394 : if (first_time)
414 : : {
415 : 10251 : path += segment.as_string ();
416 : 10251 : first_time = false;
417 : : }
418 : : else
419 : : {
420 : 143 : path += "::" + segment.as_string ();
421 : : }
422 : :
423 : : // DEBUG: remove later. Checks for path error.
424 : 10394 : if (segment.is_error ())
425 : : {
426 : 0 : rust_debug ("segment in path is error - this should've been filtered "
427 : : "out. first segment "
428 : : "was '%s'",
429 : : segments.at (0).as_string ().c_str ());
430 : : }
431 : : }
432 : :
433 : 10251 : return path;
434 : : }
435 : :
436 : : std::string
437 : 10 : Visibility::as_string () const
438 : : {
439 : 10 : switch (vis_type)
440 : : {
441 : 0 : case PRIV:
442 : 0 : return std::string ("");
443 : 10 : case PUB:
444 : 10 : return std::string ("pub");
445 : 0 : case PUB_CRATE:
446 : 0 : return std::string ("pub(crate)");
447 : 0 : case PUB_SELF:
448 : 0 : return std::string ("pub(self)");
449 : 0 : case PUB_SUPER:
450 : 0 : return std::string ("pub(super)");
451 : 0 : case PUB_IN_PATH:
452 : 0 : return std::string ("pub(in ") + in_path.as_string () + std::string (")");
453 : 0 : default:
454 : 0 : rust_unreachable ();
455 : : }
456 : : }
457 : :
458 : : // Creates a string that reflects the visibility stored.
459 : : std::string
460 : 0 : VisItem::as_string () const
461 : : {
462 : : // FIXME: can't do formatting on string to make identation occur.
463 : 0 : std::string str;
464 : :
465 : 0 : if (!outer_attrs.empty ())
466 : : {
467 : 0 : for (const auto &attr : outer_attrs)
468 : 0 : str += attr.as_string () + "\n";
469 : : }
470 : :
471 : 0 : if (has_visibility ())
472 : 0 : str += visibility.as_string () + " ";
473 : :
474 : 0 : return str;
475 : : }
476 : :
477 : : std::string
478 : 0 : Module::as_string () const
479 : : {
480 : 0 : std::string str = VisItem::as_string () + "mod " + module_name.as_string ();
481 : :
482 : : // Return early if we're dealing with an unloaded module as their body resides
483 : : // in a different file
484 : 0 : if (kind == ModuleKind::UNLOADED)
485 : 0 : return str + "\n no body (reference to external file)\n";
486 : :
487 : : // inner attributes
488 : 0 : str += append_attributes (inner_attrs, INNER);
489 : :
490 : : // items
491 : 0 : str += "\n items: ";
492 : :
493 : : // This can still happen if the module is loaded but empty, i.e. `mod foo {}`
494 : 0 : if (items.empty ())
495 : : {
496 : 0 : str += "none";
497 : : }
498 : : else
499 : : {
500 : 0 : for (const auto &item : items)
501 : : {
502 : : // DEBUG: null pointer check
503 : 0 : if (item == nullptr)
504 : : {
505 : 0 : rust_debug ("something really terrible has gone wrong - "
506 : : "null pointer item in crate.");
507 : 0 : return "NULL_POINTER_MARK";
508 : : }
509 : :
510 : 0 : str += "\n " + item->as_string ();
511 : : }
512 : : }
513 : :
514 : 0 : return str + "\n";
515 : 0 : }
516 : :
517 : : std::string
518 : 0 : StaticItem::as_string () const
519 : : {
520 : 0 : std::string str = VisItem::as_string ();
521 : :
522 : 0 : str += indent_spaces (stay) + "static";
523 : :
524 : 0 : if (has_mut)
525 : 0 : str += " mut";
526 : :
527 : 0 : str += " " + name.as_string ();
528 : :
529 : : // DEBUG: null pointer check
530 : 0 : if (type == nullptr)
531 : : {
532 : 0 : rust_debug ("something really terrible has gone wrong - null "
533 : : "pointer type in static item.");
534 : 0 : return "NULL_POINTER_MARK";
535 : : }
536 : 0 : str += "\n" + indent_spaces (stay) + "Type: " + type->as_string ();
537 : :
538 : : // DEBUG: null pointer check
539 : 0 : if (expr == nullptr)
540 : : {
541 : 0 : rust_debug ("something really terrible has gone wrong - null "
542 : : "pointer expr in static item.");
543 : 0 : return "NULL_POINTER_MARK";
544 : : }
545 : 0 : str += "\n" + indent_spaces (stay) + "Expression: " + expr->as_string ();
546 : :
547 : 0 : return str + "\n";
548 : 0 : }
549 : :
550 : : std::string
551 : 0 : ExternCrate::as_string () const
552 : : {
553 : 0 : std::string str = VisItem::as_string ();
554 : :
555 : 0 : str += "extern crate " + referenced_crate;
556 : :
557 : 0 : if (has_as_clause ())
558 : 0 : str += " as " + as_clause_name;
559 : :
560 : 0 : return str;
561 : : }
562 : :
563 : : std::string
564 : 0 : TupleStruct::as_string () const
565 : : {
566 : 0 : std::string str = VisItem::as_string ();
567 : :
568 : 0 : str += "struct " + struct_name.as_string ();
569 : :
570 : : // generic params
571 : 0 : str += "\n Generic params: ";
572 : 0 : if (generic_params.empty ())
573 : : {
574 : 0 : str += "none";
575 : : }
576 : : else
577 : : {
578 : 0 : for (const auto ¶m : generic_params)
579 : : {
580 : : // DEBUG: null pointer check
581 : 0 : if (param == nullptr)
582 : : {
583 : 0 : rust_debug (
584 : : "something really terrible has gone wrong - null pointer "
585 : : "generic param in enum.");
586 : 0 : return "NULL_POINTER_MARK";
587 : : }
588 : :
589 : 0 : str += "\n " + param->as_string ();
590 : : }
591 : : }
592 : :
593 : : // tuple fields
594 : 0 : str += "\n Tuple fields: ";
595 : 0 : if (fields.empty ())
596 : : {
597 : 0 : str += "none";
598 : : }
599 : : else
600 : : {
601 : 0 : for (const auto &field : fields)
602 : 0 : str += "\n " + field.as_string ();
603 : : }
604 : :
605 : 0 : str += "\n Where clause: ";
606 : 0 : if (has_where_clause ())
607 : 0 : str += where_clause.as_string ();
608 : : else
609 : 0 : str += "none";
610 : :
611 : 0 : return str;
612 : 0 : }
613 : :
614 : : std::string
615 : 0 : ConstantItem::as_string () const
616 : : {
617 : 0 : std::string str = VisItem::as_string ();
618 : :
619 : 0 : str += "const " + identifier;
620 : :
621 : : // DEBUG: null pointer check
622 : 0 : if (type == nullptr)
623 : : {
624 : 0 : rust_debug ("something really terrible has gone wrong - null "
625 : : "pointer type in const item.");
626 : 0 : return "NULL_POINTER_MARK";
627 : : }
628 : 0 : str += "\n Type: " + type->as_string ();
629 : :
630 : : // DEBUG: null pointer check
631 : 0 : if (const_expr == nullptr)
632 : : {
633 : 0 : rust_debug ("something really terrible has gone wrong - null "
634 : : "pointer expr in const item.");
635 : 0 : return "NULL_POINTER_MARK";
636 : : }
637 : 0 : str += "\n Expression: " + const_expr->as_string ();
638 : :
639 : 0 : return str + "\n";
640 : 0 : }
641 : :
642 : : std::string
643 : 0 : InherentImpl::as_string () const
644 : : {
645 : 0 : std::string str = VisItem::as_string ();
646 : :
647 : 0 : str += "impl ";
648 : :
649 : : // generic params
650 : 0 : str += "\n Generic params: ";
651 : 0 : if (generic_params.empty ())
652 : : {
653 : 0 : str += "none";
654 : : }
655 : : else
656 : : {
657 : 0 : for (const auto ¶m : generic_params)
658 : : {
659 : : // DEBUG: null pointer check
660 : 0 : if (param == nullptr)
661 : : {
662 : 0 : rust_debug (
663 : : "something really terrible has gone wrong - null pointer "
664 : : "generic param in inherent impl.");
665 : 0 : return "NULL_POINTER_MARK";
666 : : }
667 : :
668 : 0 : str += "\n " + param->as_string ();
669 : : }
670 : : }
671 : :
672 : 0 : str += "\n Type: " + trait_type->as_string ();
673 : :
674 : 0 : str += "\n Where clause: ";
675 : 0 : if (has_where_clause ())
676 : 0 : str += where_clause.as_string ();
677 : : else
678 : 0 : str += "none";
679 : :
680 : : // inner attributes
681 : 0 : str += append_attributes (inner_attrs, INNER);
682 : :
683 : : // inherent impl items
684 : 0 : str += "\n Inherent impl items: ";
685 : 0 : if (!has_impl_items ())
686 : : {
687 : 0 : str += "none";
688 : : }
689 : : else
690 : : {
691 : 0 : for (const auto &item : impl_items)
692 : 0 : str += "\n " + item->as_string ();
693 : : }
694 : :
695 : 0 : return str;
696 : 0 : }
697 : :
698 : : std::string
699 : 0 : StructStruct::as_string () const
700 : : {
701 : 0 : std::string str = VisItem::as_string ();
702 : :
703 : 0 : str += "struct " + struct_name.as_string ();
704 : :
705 : : // generic params
706 : 0 : str += "\n Generic params: ";
707 : 0 : if (generic_params.empty ())
708 : : {
709 : 0 : str += "none";
710 : : }
711 : : else
712 : : {
713 : 0 : for (const auto ¶m : generic_params)
714 : : {
715 : : // DEBUG: null pointer check
716 : 0 : if (param == nullptr)
717 : : {
718 : 0 : rust_debug (
719 : : "something really terrible has gone wrong - null pointer "
720 : : "generic param in enum.");
721 : 0 : return "NULL_POINTER_MARK";
722 : : }
723 : :
724 : 0 : str += "\n " + param->as_string ();
725 : : }
726 : : }
727 : :
728 : 0 : str += "\n Where clause: ";
729 : 0 : if (has_where_clause ())
730 : 0 : str += where_clause.as_string ();
731 : : else
732 : 0 : str += "none";
733 : :
734 : : // struct fields
735 : 0 : str += "\n Struct fields: ";
736 : 0 : if (is_unit)
737 : : {
738 : 0 : str += "none (unit)";
739 : : }
740 : 0 : else if (fields.empty ())
741 : : {
742 : 0 : str += "none (non-unit)";
743 : : }
744 : : else
745 : : {
746 : 0 : for (const auto &field : fields)
747 : 0 : str += "\n " + field.as_string ();
748 : : }
749 : :
750 : 0 : return str;
751 : 0 : }
752 : :
753 : : std::string
754 : 0 : UseDeclaration::as_string () const
755 : : {
756 : 0 : std::string str = VisItem::as_string ();
757 : :
758 : : // DEBUG: null pointer check
759 : 0 : if (use_tree == nullptr)
760 : : {
761 : 0 : rust_debug (
762 : : "something really terrible has gone wrong - null pointer use tree in "
763 : : "use declaration.");
764 : 0 : return "NULL_POINTER_MARK";
765 : : }
766 : :
767 : 0 : str += "use " + use_tree->as_string ();
768 : :
769 : 0 : return str;
770 : 0 : }
771 : :
772 : : std::string
773 : 0 : UseTreeGlob::as_string () const
774 : : {
775 : 0 : switch (glob_type)
776 : : {
777 : 0 : case NO_PATH:
778 : 0 : return "*";
779 : 0 : case GLOBAL:
780 : 0 : return "::*";
781 : 0 : case PATH_PREFIXED: {
782 : 0 : std::string path_str = path.as_string ();
783 : 0 : return path_str + "::*";
784 : 0 : }
785 : 0 : default:
786 : : // some kind of error
787 : 0 : return "ERROR-PATH";
788 : : }
789 : : rust_unreachable ();
790 : : }
791 : :
792 : : std::string
793 : 0 : UseTreeList::as_string () const
794 : : {
795 : 0 : std::string path_str;
796 : 0 : switch (path_type)
797 : : {
798 : 0 : case NO_PATH:
799 : 0 : path_str = "{";
800 : 0 : break;
801 : 0 : case GLOBAL:
802 : 0 : path_str = "::{";
803 : 0 : break;
804 : 0 : case PATH_PREFIXED: {
805 : 0 : path_str = path.as_string () + "::{";
806 : 0 : break;
807 : : }
808 : 0 : default:
809 : : // some kind of error
810 : 0 : return "ERROR-PATH-LIST";
811 : : }
812 : :
813 : 0 : if (has_trees ())
814 : : {
815 : 0 : auto i = trees.begin ();
816 : 0 : auto e = trees.end ();
817 : :
818 : : // DEBUG: null pointer check
819 : 0 : if (*i == nullptr)
820 : : {
821 : 0 : rust_debug ("something really terrible has gone wrong - null pointer "
822 : : "tree in use tree list.");
823 : 0 : return "NULL_POINTER_MARK";
824 : : }
825 : :
826 : 0 : for (; i != e; i++)
827 : : {
828 : 0 : path_str += (*i)->as_string ();
829 : 0 : if (e != i + 1)
830 : 0 : path_str += ", ";
831 : : }
832 : : }
833 : : else
834 : : {
835 : 0 : path_str += "none";
836 : : }
837 : :
838 : 0 : return path_str + "}";
839 : 0 : }
840 : :
841 : : std::string
842 : 0 : UseTreeRebind::as_string () const
843 : : {
844 : 0 : std::string path_str = path.as_string ();
845 : :
846 : 0 : switch (bind_type)
847 : : {
848 : : case NONE:
849 : : // nothing to add, just path
850 : : break;
851 : 0 : case IDENTIFIER:
852 : 0 : path_str += " as " + identifier.as_string ();
853 : 0 : break;
854 : 0 : case WILDCARD:
855 : 0 : path_str += " as _";
856 : 0 : break;
857 : 0 : default:
858 : : // error
859 : 0 : return "ERROR-PATH-REBIND";
860 : : }
861 : :
862 : 0 : return path_str;
863 : 0 : }
864 : :
865 : : std::string
866 : 0 : Enum::as_string () const
867 : : {
868 : 0 : std::string str = VisItem::as_string ();
869 : 0 : str += enum_name.as_string ();
870 : :
871 : : // generic params
872 : 0 : str += "\n Generic params: ";
873 : 0 : if (generic_params.empty ())
874 : : {
875 : 0 : str += "none";
876 : : }
877 : : else
878 : : {
879 : 0 : for (const auto ¶m : generic_params)
880 : : {
881 : : // DEBUG: null pointer check
882 : 0 : if (param == nullptr)
883 : : {
884 : 0 : rust_debug (
885 : : "something really terrible has gone wrong - null pointer "
886 : : "generic param in enum.");
887 : 0 : return "NULL_POINTER_MARK";
888 : : }
889 : :
890 : 0 : str += "\n " + param->as_string ();
891 : : }
892 : : }
893 : :
894 : 0 : str += "\n Where clause: ";
895 : 0 : if (has_where_clause ())
896 : 0 : str += where_clause.as_string ();
897 : : else
898 : 0 : str += "none";
899 : :
900 : : // items
901 : 0 : str += "\n Items: ";
902 : 0 : if (items.empty ())
903 : : {
904 : 0 : str += "none";
905 : : }
906 : : else
907 : : {
908 : 0 : for (const auto &item : items)
909 : : {
910 : : // DEBUG: null pointer check
911 : 0 : if (item == nullptr)
912 : : {
913 : 0 : rust_debug (
914 : : "something really terrible has gone wrong - null pointer "
915 : : "enum item in enum.");
916 : 0 : return "NULL_POINTER_MARK";
917 : : }
918 : :
919 : 0 : str += "\n " + item->as_string ();
920 : : }
921 : : }
922 : :
923 : 0 : return str;
924 : 0 : }
925 : :
926 : : std::string
927 : 0 : Trait::as_string () const
928 : : {
929 : 0 : std::string str = VisItem::as_string ();
930 : :
931 : 0 : if (has_unsafe)
932 : 0 : str += "unsafe ";
933 : :
934 : 0 : str += "trait " + name.as_string ();
935 : :
936 : : // generic params
937 : 0 : str += "\n Generic params: ";
938 : 0 : if (generic_params.empty ())
939 : : {
940 : 0 : str += "none";
941 : : }
942 : : else
943 : : {
944 : 0 : for (const auto ¶m : generic_params)
945 : : {
946 : : // DEBUG: null pointer check
947 : 0 : if (param == nullptr)
948 : : {
949 : 0 : rust_debug (
950 : : "something really terrible has gone wrong - null pointer "
951 : : "generic param in trait.");
952 : 0 : return "NULL_POINTER_MARK";
953 : : }
954 : :
955 : 0 : str += "\n " + param->as_string ();
956 : : }
957 : : }
958 : :
959 : 0 : str += "\n Type param bounds: ";
960 : 0 : if (!has_type_param_bounds ())
961 : : {
962 : 0 : str += "none";
963 : : }
964 : : else
965 : : {
966 : 0 : for (const auto &bound : type_param_bounds)
967 : : {
968 : : // DEBUG: null pointer check
969 : 0 : if (bound == nullptr)
970 : : {
971 : 0 : rust_debug (
972 : : "something really terrible has gone wrong - null pointer "
973 : : "type param bound in trait.");
974 : 0 : return "NULL_POINTER_MARK";
975 : : }
976 : :
977 : 0 : str += "\n " + bound->as_string ();
978 : : }
979 : : }
980 : :
981 : 0 : str += "\n Where clause: ";
982 : 0 : if (!has_where_clause ())
983 : 0 : str += "none";
984 : : else
985 : 0 : str += where_clause.as_string ();
986 : :
987 : 0 : str += "\n Trait items: ";
988 : 0 : if (!has_trait_items ())
989 : : {
990 : 0 : str += "none";
991 : : }
992 : : else
993 : : {
994 : 0 : for (const auto &item : trait_items)
995 : : {
996 : : // DEBUG: null pointer check
997 : 0 : if (item == nullptr)
998 : : {
999 : 0 : rust_debug (
1000 : : "something really terrible has gone wrong - null pointer "
1001 : : "trait item in trait.");
1002 : 0 : return "NULL_POINTER_MARK";
1003 : : }
1004 : :
1005 : 0 : str += "\n " + item->as_string ();
1006 : : }
1007 : : }
1008 : :
1009 : 0 : return str;
1010 : 0 : }
1011 : :
1012 : : std::string
1013 : 0 : Union::as_string () const
1014 : : {
1015 : 0 : std::string str = VisItem::as_string ();
1016 : :
1017 : 0 : str += "union " + union_name.as_string ();
1018 : :
1019 : : // generic params
1020 : 0 : str += "\n Generic params: ";
1021 : 0 : if (generic_params.empty ())
1022 : : {
1023 : 0 : str += "none";
1024 : : }
1025 : : else
1026 : : {
1027 : 0 : for (const auto ¶m : generic_params)
1028 : : {
1029 : : // DEBUG: null pointer check
1030 : 0 : if (param == nullptr)
1031 : : {
1032 : 0 : rust_debug (
1033 : : "something really terrible has gone wrong - null pointer "
1034 : : "generic param in union.");
1035 : 0 : return "NULL_POINTER_MARK";
1036 : : }
1037 : :
1038 : 0 : str += "\n " + param->as_string ();
1039 : : }
1040 : : }
1041 : :
1042 : 0 : str += "\n Where clause: ";
1043 : 0 : if (has_where_clause ())
1044 : 0 : str += where_clause.as_string ();
1045 : : else
1046 : 0 : str += "none";
1047 : :
1048 : : // struct fields
1049 : 0 : str += "\n Struct fields (variants): ";
1050 : 0 : if (variants.empty ())
1051 : : {
1052 : 0 : str += "none";
1053 : : }
1054 : : else
1055 : : {
1056 : 0 : for (const auto &field : variants)
1057 : 0 : str += "\n " + field.as_string ();
1058 : : }
1059 : :
1060 : 0 : return str;
1061 : 0 : }
1062 : :
1063 : 8029 : Function::Function (Function const &other)
1064 : 8029 : : VisItem (other), ExternalItem (other.get_node_id ()),
1065 : 8029 : qualifiers (other.qualifiers), function_name (other.function_name),
1066 : 8029 : where_clause (other.where_clause), locus (other.locus),
1067 : 8029 : is_default (other.is_default),
1068 : 16058 : is_external_function (other.is_external_function)
1069 : : {
1070 : : // guard to prevent null dereference (always required)
1071 : 8029 : if (other.return_type != nullptr)
1072 : 8015 : return_type = other.return_type->clone_type ();
1073 : :
1074 : : // guard to prevent null dereference (only required if error state)
1075 : 8029 : if (other.has_body ())
1076 : 8014 : function_body = other.function_body.value ()->clone_block_expr ();
1077 : : else
1078 : 15 : function_body = tl::nullopt;
1079 : :
1080 : 8029 : generic_params.reserve (other.generic_params.size ());
1081 : 8029 : for (const auto &e : other.generic_params)
1082 : 0 : generic_params.push_back (e->clone_generic_param ());
1083 : :
1084 : 8029 : function_params.reserve (other.function_params.size ());
1085 : 19046 : for (const auto &e : other.function_params)
1086 : 11017 : function_params.push_back (e->clone_param ());
1087 : 8029 : }
1088 : :
1089 : : Function &
1090 : 0 : Function::operator= (Function const &other)
1091 : : {
1092 : 0 : VisItem::operator= (other);
1093 : 0 : function_name = other.function_name;
1094 : 0 : qualifiers = other.qualifiers;
1095 : 0 : where_clause = other.where_clause;
1096 : : // visibility = other.visibility->clone_visibility();
1097 : : // outer_attrs = other.outer_attrs;
1098 : 0 : locus = other.locus;
1099 : 0 : is_default = other.is_default;
1100 : 0 : is_external_function = other.is_external_function;
1101 : :
1102 : : // guard to prevent null dereference (always required)
1103 : 0 : if (other.return_type != nullptr)
1104 : 0 : return_type = other.return_type->clone_type ();
1105 : : else
1106 : 0 : return_type = nullptr;
1107 : :
1108 : : // guard to prevent null dereference (only required if error state)
1109 : 0 : if (other.has_body ())
1110 : 0 : function_body = other.function_body.value ()->clone_block_expr ();
1111 : : else
1112 : 0 : function_body = tl::nullopt;
1113 : :
1114 : 0 : generic_params.reserve (other.generic_params.size ());
1115 : 0 : for (const auto &e : other.generic_params)
1116 : 0 : generic_params.push_back (e->clone_generic_param ());
1117 : :
1118 : 0 : function_params.reserve (other.function_params.size ());
1119 : 0 : for (const auto &e : other.function_params)
1120 : 0 : function_params.push_back (e->clone_param ());
1121 : :
1122 : 0 : return *this;
1123 : : }
1124 : : std::string
1125 : 0 : Function::as_string () const
1126 : : {
1127 : 0 : std::string str = VisItem::as_string () + "\n";
1128 : 0 : std::string qstr = qualifiers.as_string ();
1129 : 0 : if ("" != qstr)
1130 : 0 : str += qstr + " ";
1131 : :
1132 : 0 : if (has_return_type ())
1133 : : {
1134 : : // DEBUG: null pointer check
1135 : 0 : if (return_type == nullptr)
1136 : : {
1137 : : rust_debug (
1138 : : "something really terrible has gone wrong - null pointer return "
1139 : : "type in function.");
1140 : : return "NULL_POINTER_MARK";
1141 : : }
1142 : :
1143 : 0 : str += return_type->as_string () + " ";
1144 : : }
1145 : : else
1146 : : {
1147 : 0 : str += "void ";
1148 : : }
1149 : :
1150 : 0 : str += function_name.as_string ();
1151 : :
1152 : 0 : if (has_generics ())
1153 : : {
1154 : 0 : str += "<";
1155 : :
1156 : 0 : auto i = generic_params.begin ();
1157 : 0 : auto e = generic_params.end ();
1158 : :
1159 : : // DEBUG: null pointer check
1160 : 0 : if (i == e)
1161 : : {
1162 : 0 : rust_debug ("something really terrible has gone wrong - null pointer "
1163 : : "generic param in function item.");
1164 : 0 : return "NULL_POINTER_MARK";
1165 : : }
1166 : :
1167 : 0 : for (; i != e; i++)
1168 : : {
1169 : 0 : str += (*i)->as_string ();
1170 : 0 : if (e != i + 1)
1171 : 0 : str += ", ";
1172 : : }
1173 : 0 : str += ">";
1174 : : }
1175 : :
1176 : 0 : if (has_function_params ())
1177 : : {
1178 : 0 : auto i = function_params.begin ();
1179 : 0 : auto e = function_params.end ();
1180 : 0 : str += "(";
1181 : 0 : for (; i != e; i++)
1182 : : {
1183 : 0 : str += (*i)->as_string ();
1184 : 0 : if (e != i + 1)
1185 : 0 : str += ", ";
1186 : : }
1187 : 0 : str += ")";
1188 : : }
1189 : : else
1190 : : {
1191 : 0 : str += "()";
1192 : : }
1193 : :
1194 : 0 : if (has_where_clause ())
1195 : 0 : str += " where " + where_clause.as_string ();
1196 : :
1197 : 0 : str += "\n";
1198 : :
1199 : 0 : if (has_body ())
1200 : 0 : str += function_body.value ()->as_string () + "\n";
1201 : :
1202 : 0 : return str;
1203 : 0 : }
1204 : :
1205 : : std::string
1206 : 0 : WhereClause::as_string () const
1207 : : {
1208 : : // just print where clause items, don't mention "where" or "where clause"
1209 : 0 : std::string str;
1210 : :
1211 : 0 : if (where_clause_items.empty ())
1212 : : {
1213 : 0 : str = "none";
1214 : : }
1215 : : else
1216 : : {
1217 : 0 : for (const auto &item : where_clause_items)
1218 : 0 : str += "\n " + item->as_string ();
1219 : : }
1220 : :
1221 : 0 : return str;
1222 : : }
1223 : :
1224 : : std::string
1225 : 0 : BlockExpr::as_string () const
1226 : : {
1227 : 0 : std::string istr = indent_spaces (enter);
1228 : 0 : std::string str = istr + "BlockExpr:\n" + istr;
1229 : :
1230 : : // get outer attributes
1231 : 0 : str += append_attributes (outer_attrs, OUTER);
1232 : :
1233 : : // inner attributes
1234 : 0 : str += append_attributes (inner_attrs, INNER);
1235 : :
1236 : : // statements
1237 : 0 : str += "\n" + indent_spaces (stay) + "statements: ";
1238 : 0 : if (statements.empty ())
1239 : : {
1240 : 0 : str += "none";
1241 : : }
1242 : : else
1243 : : {
1244 : 0 : for (const auto &stmt : statements)
1245 : : {
1246 : : // DEBUG: null pointer check
1247 : 0 : if (stmt == nullptr)
1248 : : {
1249 : 0 : rust_debug (
1250 : : "something really terrible has gone wrong - null pointer "
1251 : : "stmt in block expr.");
1252 : 0 : return "NULL_POINTER_MARK";
1253 : : }
1254 : :
1255 : 0 : str += "\n" + indent_spaces (stay) + stmt->as_string ();
1256 : : }
1257 : : }
1258 : :
1259 : : // final expression
1260 : 0 : str += "\n" + indent_spaces (stay) + "final expression: ";
1261 : 0 : if (expr == nullptr)
1262 : 0 : str += "none";
1263 : : else
1264 : 0 : str += "\n" + expr->as_string ();
1265 : :
1266 : 0 : str += "\n" + indent_spaces (out);
1267 : 0 : return str;
1268 : 0 : }
1269 : :
1270 : : std::string
1271 : 0 : TraitImpl::as_string () const
1272 : : {
1273 : 0 : std::string str = VisItem::as_string ();
1274 : :
1275 : 0 : if (has_unsafe)
1276 : 0 : str += "unsafe ";
1277 : :
1278 : 0 : str += "impl ";
1279 : :
1280 : : // generic params
1281 : 0 : str += "\n Generic params: ";
1282 : 0 : if (!has_generics ())
1283 : : {
1284 : 0 : str += "none";
1285 : : }
1286 : : else
1287 : : {
1288 : 0 : for (const auto ¶m : generic_params)
1289 : 0 : str += "\n " + param->as_string ();
1290 : : }
1291 : :
1292 : 0 : str += "\n Has exclam: ";
1293 : 0 : if (has_exclam)
1294 : 0 : str += "true";
1295 : : else
1296 : 0 : str += "false";
1297 : :
1298 : 0 : str += "\n TypePath (to trait): " + trait_path.as_string ();
1299 : :
1300 : 0 : str += "\n Type (struct to impl on): " + trait_type->as_string ();
1301 : :
1302 : 0 : str += "\n Where clause: ";
1303 : 0 : if (!has_where_clause ())
1304 : 0 : str += "none";
1305 : : else
1306 : 0 : str += where_clause.as_string ();
1307 : :
1308 : : // inner attributes
1309 : 0 : str += append_attributes (inner_attrs, INNER);
1310 : :
1311 : 0 : str += "\n trait impl items: ";
1312 : 0 : if (!has_impl_items ())
1313 : : {
1314 : 0 : str += "none";
1315 : : }
1316 : : else
1317 : : {
1318 : 0 : for (const auto &item : impl_items)
1319 : 0 : str += "\n " + item->as_string ();
1320 : : }
1321 : :
1322 : 0 : return str;
1323 : : }
1324 : :
1325 : : std::string
1326 : 0 : TypeAlias::as_string () const
1327 : : {
1328 : 0 : std::string str = VisItem::as_string ();
1329 : :
1330 : 0 : str += " " + new_type_name.as_string ();
1331 : :
1332 : : // generic params
1333 : 0 : str += "\n Generic params: ";
1334 : 0 : if (!has_generics ())
1335 : : {
1336 : 0 : str += "none";
1337 : : }
1338 : : else
1339 : : {
1340 : : auto i = generic_params.begin ();
1341 : : auto e = generic_params.end ();
1342 : :
1343 : 0 : for (; i != e; i++)
1344 : : {
1345 : 0 : str += (*i)->as_string ();
1346 : 0 : if (e != i + 1)
1347 : 0 : str += ", ";
1348 : : }
1349 : : }
1350 : :
1351 : 0 : str += "\n Where clause: ";
1352 : 0 : if (!has_where_clause ())
1353 : 0 : str += "none";
1354 : : else
1355 : 0 : str += where_clause.as_string ();
1356 : :
1357 : 0 : str += "\n Type: " + existing_type->as_string ();
1358 : :
1359 : 0 : return str;
1360 : : }
1361 : :
1362 : : std::string
1363 : 0 : ExternBlock::as_string () const
1364 : : {
1365 : 0 : std::string str = VisItem::as_string ();
1366 : :
1367 : 0 : str += "extern ";
1368 : 0 : if (has_abi ())
1369 : 0 : str += "\"" + abi + "\" ";
1370 : :
1371 : 0 : str += append_attributes (inner_attrs, INNER);
1372 : :
1373 : 0 : str += "\n external items: ";
1374 : 0 : if (!has_extern_items ())
1375 : : {
1376 : 0 : str += "none";
1377 : : }
1378 : : else
1379 : : {
1380 : 0 : for (const auto &item : extern_items)
1381 : 0 : str += "\n " + item->as_string ();
1382 : : }
1383 : :
1384 : 0 : return str;
1385 : : }
1386 : :
1387 : : std::string
1388 : 0 : MacroRule::as_string () const
1389 : : {
1390 : 0 : std::string str ("Macro rule: ");
1391 : :
1392 : 0 : str += "\n Matcher: \n ";
1393 : 0 : str += matcher.as_string ();
1394 : :
1395 : 0 : str += "\n Transcriber: \n ";
1396 : 0 : str += transcriber.as_string ();
1397 : :
1398 : 0 : return str;
1399 : : }
1400 : :
1401 : : std::string
1402 : 0 : MacroRulesDefinition::as_string () const
1403 : : {
1404 : 0 : std::string str;
1405 : :
1406 : : // get outer attrs
1407 : 0 : str += append_attributes (outer_attrs, OUTER);
1408 : :
1409 : : // TODO: deal with macro_2_0
1410 : 0 : str += "macro_rules!";
1411 : :
1412 : 0 : str += rule_name.as_string ();
1413 : :
1414 : 0 : str += "\n Macro rules: ";
1415 : 0 : if (rules.empty ())
1416 : : {
1417 : 0 : str += "none";
1418 : : }
1419 : : else
1420 : : {
1421 : 0 : for (const auto &rule : rules)
1422 : 0 : str += "\n " + rule.as_string ();
1423 : : }
1424 : :
1425 : 0 : str += "\n Delim type: ";
1426 : 0 : switch (delim_type)
1427 : : {
1428 : 0 : case PARENS:
1429 : 0 : str += "parentheses";
1430 : 0 : break;
1431 : 0 : case SQUARE:
1432 : 0 : str += "square";
1433 : 0 : break;
1434 : 0 : case CURLY:
1435 : 0 : str += "curly";
1436 : 0 : break;
1437 : 0 : default:
1438 : 0 : return "ERROR_MARK_STRING - delim type in macro invocation";
1439 : : }
1440 : :
1441 : 0 : return str;
1442 : 0 : }
1443 : :
1444 : : std::string
1445 : 0 : MacroInvocation::as_string () const
1446 : : {
1447 : 0 : std::string str = "MacroInvocation: ";
1448 : 0 : auto is_builtin = kind == InvocKind::Builtin;
1449 : :
1450 : 0 : if (is_builtin)
1451 : 0 : str += "[builtin] ";
1452 : : else
1453 : 0 : str += "[regular] ";
1454 : :
1455 : 0 : str += append_attributes (outer_attrs, OUTER);
1456 : :
1457 : 0 : str += "\n " + invoc_data.as_string ();
1458 : :
1459 : 0 : str += "\n has semicolon: ";
1460 : 0 : str += has_semicolon () ? "true" : "false";
1461 : :
1462 : 0 : if (is_builtin)
1463 : : {
1464 : 0 : str += "[PENDING EAGER INVOCATIONS]: ";
1465 : 0 : for (auto &pending : pending_eager_invocs)
1466 : : {
1467 : 0 : str += pending->as_string ();
1468 : 0 : str += "\n";
1469 : : }
1470 : : }
1471 : :
1472 : 0 : return str;
1473 : : }
1474 : :
1475 : : std::string
1476 : 0 : MacroInvocData::as_string () const
1477 : : {
1478 : 0 : return path.as_string () + "!" + token_tree.as_string ();
1479 : : }
1480 : :
1481 : : std::string
1482 : 0 : ExprStmt::as_string () const
1483 : : {
1484 : 0 : std::string str = indent_spaces (enter) + "ExprStmt: \n";
1485 : :
1486 : 0 : if (expr == nullptr)
1487 : : {
1488 : 0 : str += "none (this should not happen and is an error)";
1489 : : }
1490 : : else
1491 : : {
1492 : 0 : indent_spaces (enter);
1493 : 0 : str += expr->as_string ();
1494 : 0 : if (semicolon_followed)
1495 : 0 : str += ";";
1496 : 0 : indent_spaces (out);
1497 : : }
1498 : :
1499 : 0 : indent_spaces (out);
1500 : 0 : return str;
1501 : : }
1502 : :
1503 : : std::string
1504 : 0 : ClosureParam::as_string () const
1505 : : {
1506 : 0 : std::string str (pattern->as_string ());
1507 : :
1508 : 0 : if (has_type_given ())
1509 : 0 : str += " : " + type->as_string ();
1510 : :
1511 : 0 : return str;
1512 : : }
1513 : :
1514 : : std::string
1515 : 0 : ClosureExpr::as_string () const
1516 : : {
1517 : 0 : std::string str = "ClosureExpr:";
1518 : :
1519 : 0 : str += append_attributes (outer_attrs, OUTER);
1520 : :
1521 : 0 : str += "\n Has move: ";
1522 : 0 : if (has_move)
1523 : 0 : str += "true";
1524 : : else
1525 : 0 : str += "false";
1526 : :
1527 : 0 : str += "\n Params: ";
1528 : 0 : if (params.empty ())
1529 : : {
1530 : 0 : str += "none";
1531 : : }
1532 : : else
1533 : : {
1534 : 0 : for (const auto ¶m : params)
1535 : 0 : str += "\n " + param.as_string ();
1536 : : }
1537 : :
1538 : 0 : return str;
1539 : : }
1540 : :
1541 : : std::string
1542 : 0 : ClosureExprInnerTyped::as_string () const
1543 : : {
1544 : 0 : std::string str = ClosureExpr::as_string ();
1545 : :
1546 : 0 : str += "\n Return type: " + return_type->as_string ();
1547 : :
1548 : 0 : str += "\n Body: " + expr->as_string ();
1549 : :
1550 : 0 : return str;
1551 : : }
1552 : :
1553 : : std::string
1554 : 0 : QualifiedPathType::as_string () const
1555 : : {
1556 : 0 : std::string str ("<");
1557 : 0 : str += type_to_invoke_on->as_string ();
1558 : :
1559 : 0 : if (has_as_clause ())
1560 : 0 : str += " as " + trait_path.as_string ();
1561 : :
1562 : 0 : return str + ">";
1563 : 0 : }
1564 : :
1565 : : std::string
1566 : 0 : BorrowExpr::as_string () const
1567 : : {
1568 : : /* TODO: find way to incorporate outer attrs - may have to represent in
1569 : : * different style (i.e. something more like BorrowExpr: \n outer attrs) */
1570 : :
1571 : 0 : std::string str ("&");
1572 : :
1573 : 0 : if (double_borrow)
1574 : 0 : str += "&";
1575 : :
1576 : 0 : if (is_mut)
1577 : 0 : str += "mut ";
1578 : :
1579 : 0 : str += main_or_left_expr->as_string ();
1580 : :
1581 : 0 : return str;
1582 : : }
1583 : :
1584 : : std::string
1585 : 0 : ReturnExpr::as_string () const
1586 : : {
1587 : : /* TODO: find way to incorporate outer attrs - may have to represent in
1588 : : * different style (i.e. something more like BorrowExpr: \n outer attrs) */
1589 : :
1590 : 0 : std::string str ("return ");
1591 : :
1592 : 0 : if (has_returned_expr ())
1593 : 0 : str += return_expr->as_string ();
1594 : :
1595 : 0 : return str;
1596 : : }
1597 : :
1598 : : std::string
1599 : 0 : RangeToExpr::as_string () const
1600 : : {
1601 : 0 : return ".." + to->as_string ();
1602 : : }
1603 : :
1604 : : std::string
1605 : 0 : ContinueExpr::as_string () const
1606 : : {
1607 : : // TODO: rewrite format to allow outer attributes
1608 : 0 : std::string str ("continue ");
1609 : :
1610 : 0 : if (has_label ())
1611 : 0 : str += label.as_string ();
1612 : :
1613 : 0 : return str;
1614 : : }
1615 : :
1616 : : std::string
1617 : 0 : NegationExpr::as_string () const
1618 : : {
1619 : : // TODO: rewrite formula to allow outer attributes
1620 : 0 : std::string str;
1621 : :
1622 : 0 : switch (expr_type)
1623 : : {
1624 : 0 : case NegationOperator::NEGATE:
1625 : 0 : str = "-";
1626 : 0 : break;
1627 : 0 : case NegationOperator::NOT:
1628 : 0 : str = "!";
1629 : 0 : break;
1630 : 0 : default:
1631 : 0 : return "ERROR_MARK_STRING - negation expr";
1632 : : }
1633 : :
1634 : 0 : str += main_or_left_expr->as_string ();
1635 : :
1636 : 0 : return str;
1637 : 0 : }
1638 : :
1639 : : std::string
1640 : 0 : RangeFromExpr::as_string () const
1641 : : {
1642 : 0 : return from->as_string () + "..";
1643 : : }
1644 : :
1645 : : std::string
1646 : 0 : RangeFullExpr::as_string () const
1647 : : {
1648 : 0 : return "..";
1649 : : }
1650 : :
1651 : : std::string
1652 : 0 : ArrayIndexExpr::as_string () const
1653 : : {
1654 : : // TODO: rewrite formula to allow outer attributes
1655 : 0 : return array_expr->as_string () + "[" + index_expr->as_string () + "]";
1656 : : }
1657 : :
1658 : : std::string
1659 : 0 : AssignmentExpr::as_string () const
1660 : : {
1661 : 0 : std::string str ("AssignmentExpr: ");
1662 : :
1663 : 0 : if (main_or_left_expr == nullptr || right_expr == nullptr)
1664 : : {
1665 : 0 : str += "error (either or both expressions are null)";
1666 : : }
1667 : : else
1668 : : {
1669 : : // left expr
1670 : 0 : str += "\n left: " + main_or_left_expr->as_string ();
1671 : :
1672 : : // right expr
1673 : 0 : str += "\n right: " + right_expr->as_string ();
1674 : : }
1675 : :
1676 : 0 : return str;
1677 : : }
1678 : :
1679 : : std::string
1680 : 0 : AsyncBlockExpr::as_string () const
1681 : : {
1682 : 0 : std::string str = "AsyncBlockExpr: ";
1683 : :
1684 : : // get outer attributes
1685 : : // str += "\n " + Expr::as_string ();
1686 : 0 : str += append_attributes (outer_attrs, OUTER);
1687 : :
1688 : 0 : str += "\n Has move: ";
1689 : 0 : str += has_move ? "true" : "false";
1690 : :
1691 : 0 : return str + "\n" + block_expr->as_string ();
1692 : 0 : }
1693 : :
1694 : : std::string
1695 : 0 : ComparisonExpr::as_string () const
1696 : : {
1697 : : // TODO: rewrite to better reflect non-literal expressions
1698 : 0 : std::string str (main_or_left_expr->as_string ());
1699 : :
1700 : 0 : switch (expr_type)
1701 : : {
1702 : 0 : case ComparisonOperator::EQUAL:
1703 : 0 : str += " == ";
1704 : 0 : break;
1705 : 0 : case ComparisonOperator::NOT_EQUAL:
1706 : 0 : str += " != ";
1707 : 0 : break;
1708 : 0 : case ComparisonOperator::GREATER_THAN:
1709 : 0 : str += " > ";
1710 : 0 : break;
1711 : 0 : case ComparisonOperator::LESS_THAN:
1712 : 0 : str += " < ";
1713 : 0 : break;
1714 : 0 : case ComparisonOperator::GREATER_OR_EQUAL:
1715 : 0 : str += " >= ";
1716 : 0 : break;
1717 : 0 : case ComparisonOperator::LESS_OR_EQUAL:
1718 : 0 : str += " <= ";
1719 : 0 : break;
1720 : 0 : default:
1721 : 0 : return "ERROR_MARK_STRING - comparison expr";
1722 : : }
1723 : :
1724 : 0 : str += right_expr->as_string ();
1725 : :
1726 : 0 : return str;
1727 : 0 : }
1728 : :
1729 : : std::string
1730 : 0 : MethodCallExpr::as_string () const
1731 : : {
1732 : 0 : std::string str = "MethodCallExpr: ";
1733 : :
1734 : 0 : str += append_attributes (outer_attrs, OUTER);
1735 : :
1736 : 0 : str += "\n Object (receiver) expr: \n";
1737 : 0 : str += receiver->as_string ();
1738 : :
1739 : 0 : str += "\n Method path segment: \n";
1740 : 0 : str += method_name.as_string ();
1741 : :
1742 : 0 : str += "\n Call params:";
1743 : 0 : if (params.empty ())
1744 : : {
1745 : 0 : str += "none";
1746 : : }
1747 : : else
1748 : : {
1749 : 0 : for (const auto ¶m : params)
1750 : : {
1751 : 0 : if (param == nullptr)
1752 : 0 : return "ERROR_MARK_STRING - method call expr param is null";
1753 : :
1754 : 0 : str += "\n " + param->as_string ();
1755 : : }
1756 : : }
1757 : :
1758 : 0 : return str;
1759 : 0 : }
1760 : :
1761 : : std::string
1762 : 0 : TupleIndexExpr::as_string () const
1763 : : {
1764 : : // TODO: rewrite dump to better reflect non-literal exprs
1765 : 0 : return tuple_expr->as_string () + "." + std::to_string (tuple_index);
1766 : : }
1767 : :
1768 : : std::string
1769 : 0 : DereferenceExpr::as_string () const
1770 : : {
1771 : : // TODO: rewrite dump to better reflect non-literal exprs
1772 : 0 : return "*" + main_or_left_expr->as_string ();
1773 : : }
1774 : :
1775 : : std::string
1776 : 0 : FieldAccessExpr::as_string () const
1777 : : {
1778 : : // TODO: rewrite dump to better reflect non-literal exprs
1779 : 0 : return receiver->as_string () + "." + field.as_string ();
1780 : : }
1781 : :
1782 : : std::string
1783 : 0 : LazyBooleanExpr::as_string () const
1784 : : {
1785 : : // TODO: rewrite dump to better reflect non-literal exprs
1786 : 0 : std::string str (main_or_left_expr->as_string ());
1787 : :
1788 : 0 : switch (expr_type)
1789 : : {
1790 : 0 : case LazyBooleanOperator::LOGICAL_OR:
1791 : 0 : str += " || ";
1792 : 0 : break;
1793 : 0 : case LazyBooleanOperator::LOGICAL_AND:
1794 : 0 : str += " && ";
1795 : 0 : break;
1796 : 0 : default:
1797 : 0 : return "ERROR_MARK_STRING - lazy boolean expr out of bounds";
1798 : : }
1799 : :
1800 : 0 : str += right_expr->as_string ();
1801 : :
1802 : 0 : return str;
1803 : 0 : }
1804 : :
1805 : : std::string
1806 : 0 : RangeFromToExpr::as_string () const
1807 : : {
1808 : : // TODO: rewrite dump to better reflect non-literal exprs
1809 : 0 : return from->as_string () + ".." + to->as_string ();
1810 : : }
1811 : :
1812 : : std::string
1813 : 0 : RangeToInclExpr::as_string () const
1814 : : {
1815 : : // TODO: rewrite dump to better reflect non-literal exprs
1816 : 0 : return "..=" + to->as_string ();
1817 : : }
1818 : :
1819 : : std::string
1820 : 0 : UnsafeBlockExpr::as_string () const
1821 : : {
1822 : 0 : std::string str = "UnsafeBlockExpr:" + indent_spaces (enter);
1823 : :
1824 : : // get outer attributes
1825 : 0 : str += append_attributes (outer_attrs, OUTER);
1826 : :
1827 : 0 : str += indent_spaces (stay) + expr->as_string () + "\n" + indent_spaces (out);
1828 : :
1829 : 0 : return str;
1830 : : }
1831 : :
1832 : : std::string
1833 : 0 : ClosureExprInner::as_string () const
1834 : : {
1835 : 0 : std::string str = ClosureExpr::as_string ();
1836 : :
1837 : 0 : str += "\n Expression: " + closure_inner->as_string ();
1838 : :
1839 : 0 : return str;
1840 : : }
1841 : :
1842 : : std::string
1843 : 0 : IfExpr::as_string () const
1844 : : {
1845 : 0 : std::string str = "IfExpr: ";
1846 : :
1847 : 0 : str += append_attributes (outer_attrs, OUTER);
1848 : :
1849 : 0 : str += "\n Condition expr: " + condition->as_string ();
1850 : :
1851 : 0 : str += "\n If block expr: " + if_block->as_string ();
1852 : :
1853 : 0 : return str;
1854 : : }
1855 : :
1856 : : std::string
1857 : 0 : IfExprConseqElse::as_string () const
1858 : : {
1859 : 0 : std::string str = IfExpr::as_string ();
1860 : :
1861 : 0 : str += "\n Else expr: " + else_block->as_string ();
1862 : :
1863 : 0 : return str;
1864 : : }
1865 : :
1866 : : std::string
1867 : 0 : IfLetExpr::as_string () const
1868 : : {
1869 : 0 : std::string str = "IfLetExpr: ";
1870 : :
1871 : 0 : str += append_attributes (outer_attrs, OUTER);
1872 : :
1873 : 0 : str += "\n Condition match arm patterns: ";
1874 : 0 : if (match_arm_patterns.empty ())
1875 : : {
1876 : 0 : str += "none";
1877 : : }
1878 : : else
1879 : : {
1880 : 0 : for (const auto &pattern : match_arm_patterns)
1881 : 0 : str += "\n " + pattern->as_string ();
1882 : : }
1883 : :
1884 : 0 : str += "\n Scrutinee expr: " + value->as_string ();
1885 : :
1886 : 0 : str += "\n If let block expr: " + if_block->as_string ();
1887 : :
1888 : 0 : return str;
1889 : : }
1890 : :
1891 : : std::string
1892 : 0 : IfLetExprConseqElse::as_string () const
1893 : : {
1894 : 0 : std::string str = IfLetExpr::as_string ();
1895 : :
1896 : 0 : str += "\n Else expr: " + else_block->as_string ();
1897 : :
1898 : 0 : return str;
1899 : : }
1900 : :
1901 : : std::string
1902 : 0 : RangeFromToInclExpr::as_string () const
1903 : : {
1904 : : // TODO: rewrite to allow dumps with non-literal exprs
1905 : 0 : return from->as_string () + "..=" + to->as_string ();
1906 : : }
1907 : :
1908 : : std::string
1909 : 0 : ErrorPropagationExpr::as_string () const
1910 : : {
1911 : : // TODO: rewrite to allow dumps with non-literal exprs
1912 : 0 : return main_or_left_expr->as_string () + "?";
1913 : : }
1914 : :
1915 : : std::string
1916 : 0 : CompoundAssignmentExpr::as_string () const
1917 : : {
1918 : 0 : std::string operator_str;
1919 : 0 : operator_str.reserve (1);
1920 : :
1921 : : // get operator string
1922 : 0 : switch (expr_type)
1923 : : {
1924 : 0 : case CompoundAssignmentOperator::ADD:
1925 : 0 : operator_str = "+";
1926 : 0 : break;
1927 : 0 : case CompoundAssignmentOperator::SUBTRACT:
1928 : 0 : operator_str = "-";
1929 : 0 : break;
1930 : 0 : case CompoundAssignmentOperator::MULTIPLY:
1931 : 0 : operator_str = "*";
1932 : 0 : break;
1933 : 0 : case CompoundAssignmentOperator::DIVIDE:
1934 : 0 : operator_str = "/";
1935 : 0 : break;
1936 : 0 : case CompoundAssignmentOperator::MODULUS:
1937 : 0 : operator_str = "%";
1938 : 0 : break;
1939 : 0 : case CompoundAssignmentOperator::BITWISE_AND:
1940 : 0 : operator_str = "&";
1941 : 0 : break;
1942 : 0 : case CompoundAssignmentOperator::BITWISE_OR:
1943 : 0 : operator_str = "|";
1944 : 0 : break;
1945 : 0 : case CompoundAssignmentOperator::BITWISE_XOR:
1946 : 0 : operator_str = "^";
1947 : 0 : break;
1948 : 0 : case CompoundAssignmentOperator::LEFT_SHIFT:
1949 : 0 : operator_str = "<<";
1950 : 0 : break;
1951 : 0 : case CompoundAssignmentOperator::RIGHT_SHIFT:
1952 : 0 : operator_str = ">>";
1953 : 0 : break;
1954 : 0 : default:
1955 : 0 : operator_str = "invalid operator. wtf";
1956 : 0 : break;
1957 : : }
1958 : :
1959 : 0 : operator_str += "=";
1960 : :
1961 : 0 : std::string str ("CompoundAssignmentExpr: ");
1962 : 0 : if (main_or_left_expr == nullptr || right_expr == nullptr)
1963 : : {
1964 : 0 : str += "error. this is probably a parsing failure.";
1965 : : }
1966 : : else
1967 : : {
1968 : 0 : str += "\n left: " + main_or_left_expr->as_string ();
1969 : 0 : str += "\n right: " + right_expr->as_string ();
1970 : 0 : str += "\n operator: " + operator_str;
1971 : : }
1972 : :
1973 : 0 : return str;
1974 : 0 : }
1975 : :
1976 : : std::string
1977 : 0 : ArithmeticOrLogicalExpr::as_string () const
1978 : : {
1979 : 0 : std::string operator_str;
1980 : 0 : operator_str.reserve (1);
1981 : :
1982 : : // get operator string
1983 : 0 : switch (expr_type)
1984 : : {
1985 : 0 : case ArithmeticOrLogicalOperator::ADD:
1986 : 0 : operator_str = "+";
1987 : 0 : break;
1988 : 0 : case ArithmeticOrLogicalOperator::SUBTRACT:
1989 : 0 : operator_str = "-";
1990 : 0 : break;
1991 : 0 : case ArithmeticOrLogicalOperator::MULTIPLY:
1992 : 0 : operator_str = "*";
1993 : 0 : break;
1994 : 0 : case ArithmeticOrLogicalOperator::DIVIDE:
1995 : 0 : operator_str = "/";
1996 : 0 : break;
1997 : 0 : case ArithmeticOrLogicalOperator::MODULUS:
1998 : 0 : operator_str = "%";
1999 : 0 : break;
2000 : 0 : case ArithmeticOrLogicalOperator::BITWISE_AND:
2001 : 0 : operator_str = "&";
2002 : 0 : break;
2003 : 0 : case ArithmeticOrLogicalOperator::BITWISE_OR:
2004 : 0 : operator_str = "|";
2005 : 0 : break;
2006 : 0 : case ArithmeticOrLogicalOperator::BITWISE_XOR:
2007 : 0 : operator_str = "^";
2008 : 0 : break;
2009 : 0 : case ArithmeticOrLogicalOperator::LEFT_SHIFT:
2010 : 0 : operator_str = "<<";
2011 : 0 : break;
2012 : 0 : case ArithmeticOrLogicalOperator::RIGHT_SHIFT:
2013 : 0 : operator_str = ">>";
2014 : 0 : break;
2015 : 0 : default:
2016 : 0 : operator_str = "invalid operator. wtf";
2017 : 0 : break;
2018 : : }
2019 : :
2020 : 0 : std::string str ("ArithmeticOrLogicalExpr: ");
2021 : 0 : if (main_or_left_expr == nullptr || right_expr == nullptr)
2022 : : {
2023 : 0 : str += "error. this is probably a parsing failure.";
2024 : : }
2025 : : else
2026 : : {
2027 : 0 : str += main_or_left_expr->as_string () + " ";
2028 : 0 : str += operator_str + " ";
2029 : 0 : str += right_expr->as_string ();
2030 : : }
2031 : :
2032 : 0 : return str;
2033 : 0 : }
2034 : :
2035 : : std::string
2036 : 0 : CallExpr::as_string () const
2037 : : {
2038 : 0 : std::string str = "CallExpr: ";
2039 : :
2040 : 0 : str += append_attributes (outer_attrs, OUTER);
2041 : :
2042 : 0 : str += "\n Function expr: ";
2043 : 0 : str += function->as_string ();
2044 : :
2045 : 0 : str += "\n Call params:";
2046 : 0 : if (!has_params ())
2047 : : {
2048 : 0 : str += "none";
2049 : : }
2050 : : else
2051 : : {
2052 : 0 : for (const auto ¶m : params)
2053 : : {
2054 : 0 : if (param == nullptr)
2055 : 0 : return "ERROR_MARK_STRING - call expr param is null";
2056 : :
2057 : 0 : str += "\n " + param->as_string ();
2058 : : }
2059 : : }
2060 : :
2061 : 0 : return str;
2062 : 0 : }
2063 : :
2064 : : std::string
2065 : 0 : WhileLoopExpr::as_string () const
2066 : : {
2067 : 0 : std::string str = "WhileLoopExpr: ";
2068 : :
2069 : 0 : str += append_attributes (outer_attrs, OUTER);
2070 : :
2071 : 0 : str += "\n Label: ";
2072 : 0 : if (!has_loop_label ())
2073 : 0 : str += "none";
2074 : : else
2075 : 0 : str += loop_label.as_string ();
2076 : :
2077 : 0 : str += "\n Conditional expr: " + condition->as_string ();
2078 : :
2079 : 0 : str += "\n Loop block: " + loop_block->as_string ();
2080 : :
2081 : 0 : return str;
2082 : : }
2083 : :
2084 : : std::string
2085 : 0 : WhileLetLoopExpr::as_string () const
2086 : : {
2087 : 0 : std::string str = "WhileLetLoopExpr: ";
2088 : :
2089 : 0 : str += append_attributes (outer_attrs, OUTER);
2090 : :
2091 : 0 : str += "\n Label: ";
2092 : 0 : if (!has_loop_label ())
2093 : 0 : str += "none";
2094 : : else
2095 : 0 : str += loop_label.as_string ();
2096 : :
2097 : 0 : str += "\n Match arm patterns: ";
2098 : 0 : if (match_arm_patterns.empty ())
2099 : : {
2100 : 0 : str += "none";
2101 : : }
2102 : : else
2103 : : {
2104 : 0 : for (const auto &pattern : match_arm_patterns)
2105 : 0 : str += "\n " + pattern->as_string ();
2106 : : }
2107 : :
2108 : 0 : str += "\n Scrutinee expr: " + scrutinee->as_string ();
2109 : :
2110 : 0 : str += "\n Loop block: " + loop_block->as_string ();
2111 : :
2112 : 0 : return str;
2113 : : }
2114 : :
2115 : : std::string
2116 : 0 : LoopExpr::as_string () const
2117 : : {
2118 : 0 : std::string str = "LoopExpr: (infinite loop)";
2119 : :
2120 : 0 : str += append_attributes (outer_attrs, OUTER);
2121 : :
2122 : 0 : str += "\n Label: ";
2123 : 0 : if (!has_loop_label ())
2124 : 0 : str += "none";
2125 : : else
2126 : 0 : str += loop_label.as_string ();
2127 : :
2128 : 0 : str += "\n Loop block: " + loop_block->as_string ();
2129 : :
2130 : 0 : return str;
2131 : : }
2132 : :
2133 : : std::string
2134 : 0 : ArrayExpr::as_string () const
2135 : : {
2136 : 0 : std::string str = "ArrayExpr:";
2137 : :
2138 : 0 : str += append_attributes (outer_attrs, OUTER);
2139 : :
2140 : : // inner attributes
2141 : 0 : str += append_attributes (inner_attrs, INNER);
2142 : :
2143 : 0 : str += "\n Array elems: ";
2144 : 0 : str += internal_elements->as_string ();
2145 : :
2146 : 0 : return str;
2147 : : }
2148 : :
2149 : : std::string
2150 : 0 : AwaitExpr::as_string () const
2151 : : {
2152 : : // TODO: rewrite dump to allow non-literal exprs
2153 : 0 : return awaited_expr->as_string () + ".await";
2154 : : }
2155 : :
2156 : : std::string
2157 : 0 : BreakExpr::as_string () const
2158 : : {
2159 : : // TODO: rewrite dump to allow outer attrs, non-literal exprs
2160 : 0 : std::string str ("break ");
2161 : :
2162 : 0 : if (has_label ())
2163 : 0 : str += label.as_string () + " ";
2164 : :
2165 : 0 : if (has_break_expr ())
2166 : 0 : str += break_expr->as_string ();
2167 : :
2168 : 0 : return str;
2169 : : }
2170 : :
2171 : : std::string
2172 : 0 : LoopLabel::as_string () const
2173 : : {
2174 : 0 : return label.as_string () + ": (label) ";
2175 : : }
2176 : :
2177 : : std::string
2178 : 0 : MatchArm::as_string () const
2179 : : {
2180 : : // outer attributes
2181 : 0 : std::string str = append_attributes (outer_attrs, OUTER);
2182 : :
2183 : 0 : str += "\nPatterns: ";
2184 : 0 : if (match_arm_patterns.empty ())
2185 : : {
2186 : 0 : str += "none";
2187 : : }
2188 : : else
2189 : : {
2190 : 0 : for (const auto &pattern : match_arm_patterns)
2191 : 0 : str += "\n " + pattern->as_string ();
2192 : : }
2193 : :
2194 : 0 : str += "\nGuard expr: ";
2195 : 0 : if (!has_match_arm_guard ())
2196 : 0 : str += "none";
2197 : : else
2198 : 0 : str += guard_expr->as_string ();
2199 : :
2200 : 0 : return str;
2201 : : }
2202 : :
2203 : : std::string
2204 : 0 : MatchCase::as_string () const
2205 : : {
2206 : 0 : std::string str ("MatchCase: (match arm) ");
2207 : :
2208 : 0 : str += "\n Match arm matcher: \n" + arm.as_string ();
2209 : 0 : str += "\n Expr: " + expr->as_string ();
2210 : :
2211 : 0 : return str;
2212 : : }
2213 : :
2214 : : std::string
2215 : 0 : MatchExpr::as_string () const
2216 : : {
2217 : 0 : std::string str ("MatchExpr:");
2218 : :
2219 : 0 : str += append_attributes (outer_attrs, OUTER);
2220 : :
2221 : 0 : str += "\n Scrutinee expr: " + branch_value->as_string ();
2222 : :
2223 : : // inner attributes
2224 : 0 : str += append_attributes (inner_attrs, INNER);
2225 : :
2226 : : // match arms
2227 : 0 : str += "\n Match arms: ";
2228 : 0 : if (match_arms.empty ())
2229 : : {
2230 : 0 : str += "none";
2231 : : }
2232 : : else
2233 : : {
2234 : 0 : for (const auto &arm : match_arms)
2235 : 0 : str += "\n " + arm.as_string ();
2236 : : }
2237 : :
2238 : 0 : return str;
2239 : : }
2240 : :
2241 : : std::string
2242 : 0 : TupleExpr::as_string () const
2243 : : {
2244 : 0 : std::string str ("TupleExpr:");
2245 : :
2246 : 0 : str += append_attributes (outer_attrs, OUTER);
2247 : :
2248 : : // inner attributes
2249 : 0 : str += append_attributes (inner_attrs, INNER);
2250 : :
2251 : 0 : str += "\n Tuple elements: ";
2252 : 0 : if (tuple_elems.empty ())
2253 : : {
2254 : 0 : str += "none";
2255 : : }
2256 : : else
2257 : : {
2258 : 0 : for (const auto &elem : tuple_elems)
2259 : 0 : str += "\n " + elem->as_string ();
2260 : : }
2261 : :
2262 : 0 : return str;
2263 : : }
2264 : :
2265 : : std::string
2266 : 0 : FunctionParam::as_string () const
2267 : : {
2268 : : // TODO: rewrite dump to allow non-literal types
2269 : 0 : return param_name->as_string () + " : " + type->as_string ();
2270 : : }
2271 : :
2272 : : void
2273 : 31420 : FunctionParam::accept_vis (ASTVisitor &vis)
2274 : : {
2275 : 31420 : vis.visit (*this);
2276 : 31420 : }
2277 : :
2278 : : void
2279 : 38781 : SelfParam::accept_vis (ASTVisitor &vis)
2280 : : {
2281 : 38781 : vis.visit (*this);
2282 : 38781 : }
2283 : :
2284 : : void
2285 : 3365 : VariadicParam::accept_vis (ASTVisitor &vis)
2286 : : {
2287 : 3365 : vis.visit (*this);
2288 : 3365 : }
2289 : :
2290 : : std::string
2291 : 0 : VariadicParam::as_string () const
2292 : : {
2293 : 0 : if (has_pattern ())
2294 : 0 : return get_pattern ().as_string () + " : ...";
2295 : : else
2296 : 0 : return "...";
2297 : : }
2298 : :
2299 : : std::string
2300 : 0 : FunctionQualifiers::as_string () const
2301 : : {
2302 : 0 : std::string str;
2303 : :
2304 : 0 : if (is_async ())
2305 : 0 : str += "async ";
2306 : 0 : if (is_const ())
2307 : 0 : str += "const ";
2308 : 0 : if (is_unsafe ())
2309 : 0 : str += "unsafe ";
2310 : :
2311 : 0 : if (has_extern)
2312 : : {
2313 : 0 : str += "extern";
2314 : 0 : if (extern_abi != "")
2315 : 0 : str += " \"" + extern_abi + "\"";
2316 : : }
2317 : :
2318 : 0 : return str;
2319 : : }
2320 : :
2321 : : std::string
2322 : 7 : TraitBound::as_string () const
2323 : : {
2324 : 7 : std::string str ("TraitBound:");
2325 : :
2326 : 7 : str += "\n Has opening question mark: ";
2327 : 7 : if (opening_question_mark)
2328 : 0 : str += "true";
2329 : : else
2330 : 7 : str += "false";
2331 : :
2332 : 7 : str += "\n For lifetimes: ";
2333 : 7 : if (!has_for_lifetimes ())
2334 : : {
2335 : 7 : str += "none";
2336 : : }
2337 : : else
2338 : : {
2339 : 0 : for (const auto &lifetime : for_lifetimes)
2340 : 0 : str += "\n " + lifetime.as_string ();
2341 : : }
2342 : :
2343 : 7 : str += "\n Type path: " + type_path.as_string ();
2344 : :
2345 : 7 : return str;
2346 : : }
2347 : :
2348 : : std::string
2349 : 0 : MacroMatcher::as_string () const
2350 : : {
2351 : 0 : std::string str ("Macro matcher: ");
2352 : :
2353 : 0 : str += "\n Delim type: ";
2354 : :
2355 : 0 : switch (delim_type)
2356 : : {
2357 : 0 : case PARENS:
2358 : 0 : str += "parentheses";
2359 : 0 : break;
2360 : 0 : case SQUARE:
2361 : 0 : str += "square";
2362 : 0 : break;
2363 : 0 : case CURLY:
2364 : 0 : str += "curly";
2365 : 0 : break;
2366 : 0 : default:
2367 : 0 : return "ERROR_MARK_STRING - macro matcher delim";
2368 : : }
2369 : :
2370 : 0 : str += "\n Matches: ";
2371 : :
2372 : 0 : if (matches.empty ())
2373 : : {
2374 : 0 : str += "none";
2375 : : }
2376 : : else
2377 : : {
2378 : 0 : for (const auto &match : matches)
2379 : 0 : str += "\n " + match->as_string ();
2380 : : }
2381 : :
2382 : 0 : return str;
2383 : 0 : }
2384 : :
2385 : : std::string
2386 : 0 : LifetimeParam::as_string () const
2387 : : {
2388 : 0 : std::string str ("LifetimeParam: ");
2389 : :
2390 : 0 : str += "\n Outer attribute: ";
2391 : 0 : if (!has_outer_attribute ())
2392 : 0 : str += "none";
2393 : : else
2394 : 0 : str += outer_attr.as_string ();
2395 : :
2396 : 0 : str += "\n Lifetime: " + lifetime.as_string ();
2397 : :
2398 : 0 : str += "\n Lifetime bounds: ";
2399 : 0 : if (!has_lifetime_bounds ())
2400 : : {
2401 : 0 : str += "none";
2402 : : }
2403 : : else
2404 : : {
2405 : 0 : for (const auto &bound : lifetime_bounds)
2406 : 0 : str += "\n " + bound.as_string ();
2407 : : }
2408 : :
2409 : 0 : return str;
2410 : : }
2411 : :
2412 : : std::string
2413 : 0 : MacroMatchFragment::as_string () const
2414 : : {
2415 : 0 : return "$" + ident.as_string () + ": " + frag_spec.as_string ();
2416 : : }
2417 : :
2418 : : std::string
2419 : 0 : MacroMatchRepetition::as_string () const
2420 : : {
2421 : 0 : std::string str ("Macro match repetition: ");
2422 : :
2423 : 0 : str += "\n Matches: ";
2424 : 0 : if (matches.empty ())
2425 : : {
2426 : 0 : str += "none";
2427 : : }
2428 : : else
2429 : : {
2430 : 0 : for (const auto &match : matches)
2431 : 0 : str += "\n " + match->as_string ();
2432 : : }
2433 : :
2434 : 0 : str += "\n Sep: ";
2435 : 0 : if (!has_sep ())
2436 : 0 : str += "none";
2437 : : else
2438 : 0 : str += sep->as_string ();
2439 : :
2440 : 0 : str += "\n Op: ";
2441 : 0 : switch (op)
2442 : : {
2443 : 0 : case ANY:
2444 : 0 : str += "*";
2445 : 0 : break;
2446 : 0 : case ONE_OR_MORE:
2447 : 0 : str += "+";
2448 : 0 : break;
2449 : 0 : case ZERO_OR_ONE:
2450 : 0 : str += "?";
2451 : 0 : break;
2452 : 0 : case NONE:
2453 : 0 : str += "no op? shouldn't be allowed";
2454 : 0 : break;
2455 : 0 : default:
2456 : 0 : return "ERROR_MARK_STRING - unknown op in macro match repetition";
2457 : : }
2458 : :
2459 : 0 : return str;
2460 : 0 : }
2461 : :
2462 : : std::string
2463 : 266 : Lifetime::as_string () const
2464 : : {
2465 : 266 : if (is_error ())
2466 : 0 : return "error lifetime";
2467 : :
2468 : 266 : switch (lifetime_type)
2469 : : {
2470 : 91 : case NAMED:
2471 : 91 : return "'" + lifetime_name;
2472 : 0 : case STATIC:
2473 : 0 : return "'static";
2474 : 175 : case WILDCARD:
2475 : 175 : return "'_";
2476 : 0 : default:
2477 : 0 : return "ERROR-MARK-STRING: lifetime type failure";
2478 : : }
2479 : : }
2480 : :
2481 : : std::string
2482 : 0 : TypeParam::as_string () const
2483 : : {
2484 : 0 : std::string str ("TypeParam: ");
2485 : :
2486 : 0 : str += "\n Outer attribute: ";
2487 : 0 : if (!has_outer_attribute ())
2488 : 0 : str += "none";
2489 : : else
2490 : 0 : str += outer_attr.as_string ();
2491 : :
2492 : 0 : str += "\n Identifier: " + type_representation.as_string ();
2493 : :
2494 : 0 : str += "\n Type param bounds: ";
2495 : 0 : if (!has_type_param_bounds ())
2496 : : {
2497 : 0 : str += "none";
2498 : : }
2499 : : else
2500 : : {
2501 : 0 : for (const auto &bound : type_param_bounds)
2502 : 0 : str += "\n " + bound->as_string ();
2503 : : }
2504 : :
2505 : 0 : str += "\n Type: ";
2506 : 0 : if (!has_type ())
2507 : 0 : str += "none";
2508 : : else
2509 : 0 : str += type->as_string ();
2510 : :
2511 : 0 : return str;
2512 : : }
2513 : :
2514 : : std::string
2515 : 0 : ForLoopExpr::as_string () const
2516 : : {
2517 : 0 : std::string str = "ForLoopExpr: ";
2518 : :
2519 : 0 : str += append_attributes (outer_attrs, OUTER);
2520 : :
2521 : 0 : str += "\n Label: ";
2522 : 0 : if (!has_loop_label ())
2523 : 0 : str += "none";
2524 : : else
2525 : 0 : str += loop_label.as_string ();
2526 : :
2527 : 0 : str += "\n Pattern: " + pattern->as_string ();
2528 : :
2529 : 0 : str += "\n Iterator expr: " + iterator_expr->as_string ();
2530 : :
2531 : 0 : str += "\n Loop block: " + loop_block->as_string ();
2532 : :
2533 : 0 : return str;
2534 : : }
2535 : :
2536 : : std::string
2537 : 0 : LetStmt::as_string () const
2538 : : {
2539 : : // TODO: rewrite to work with non-linearisable types and exprs
2540 : 0 : std::string str = append_attributes (outer_attrs, OUTER);
2541 : :
2542 : 0 : str += "\n" + indent_spaces (stay) + "let " + variables_pattern->as_string ();
2543 : :
2544 : 0 : if (has_type ())
2545 : 0 : str += " : " + type->as_string ();
2546 : :
2547 : 0 : if (has_init_expr ())
2548 : 0 : str += " = " + init_expr->as_string ();
2549 : :
2550 : 0 : return str;
2551 : : }
2552 : :
2553 : : std::string
2554 : 0 : InferredType::as_string () const
2555 : : {
2556 : 0 : return "_ (inferred)";
2557 : : }
2558 : :
2559 : : std::string
2560 : 0 : TypeCastExpr::as_string () const
2561 : : {
2562 : : // TODO: rewrite to work with non-linearisable exprs and types
2563 : 0 : return main_or_left_expr->as_string () + " as "
2564 : 0 : + type_to_convert_to->as_string ();
2565 : : }
2566 : :
2567 : : std::string
2568 : 0 : ImplTraitType::as_string () const
2569 : : {
2570 : 0 : std::string str ("ImplTraitType: \n TypeParamBounds: ");
2571 : :
2572 : 0 : if (type_param_bounds.empty ())
2573 : : {
2574 : 0 : str += "none";
2575 : : }
2576 : : else
2577 : : {
2578 : 0 : for (const auto &bound : type_param_bounds)
2579 : 0 : str += "\n " + bound->as_string ();
2580 : : }
2581 : :
2582 : 0 : return str;
2583 : : }
2584 : :
2585 : : std::string
2586 : 256 : ReferenceType::as_string () const
2587 : : {
2588 : : // TODO: rewrite to work with non-linearisable types
2589 : 256 : std::string str ("&");
2590 : :
2591 : 256 : if (has_lifetime ())
2592 : 512 : str += lifetime.as_string () + " ";
2593 : :
2594 : 256 : if (has_mut)
2595 : 63 : str += "mut ";
2596 : :
2597 : 256 : str += type->as_string ();
2598 : :
2599 : 256 : return str;
2600 : : }
2601 : :
2602 : : std::string
2603 : 147 : RawPointerType::as_string () const
2604 : : {
2605 : : // TODO: rewrite to work with non-linearisable types
2606 : 147 : std::string str ("*");
2607 : :
2608 : 147 : switch (pointer_type)
2609 : : {
2610 : 23 : case MUT:
2611 : 23 : str += "mut ";
2612 : 23 : break;
2613 : 124 : case CONST:
2614 : 124 : str += "const ";
2615 : 124 : break;
2616 : 0 : default:
2617 : 0 : return "ERROR_MARK_STRING - unknown pointer type in raw pointer type";
2618 : : }
2619 : :
2620 : 147 : str += type->as_string ();
2621 : :
2622 : 147 : return str;
2623 : 147 : }
2624 : :
2625 : : std::string
2626 : 0 : TraitObjectType::as_string () const
2627 : : {
2628 : 0 : std::string str ("TraitObjectType: \n Has dyn dispatch: ");
2629 : :
2630 : 0 : if (has_dyn)
2631 : 0 : str += "true";
2632 : : else
2633 : 0 : str += "false";
2634 : :
2635 : 0 : str += "\n TypeParamBounds: ";
2636 : 0 : if (type_param_bounds.empty ())
2637 : : {
2638 : 0 : str += "none";
2639 : : }
2640 : : else
2641 : : {
2642 : 0 : for (const auto &bound : type_param_bounds)
2643 : 0 : str += "\n " + bound->as_string ();
2644 : : }
2645 : :
2646 : 0 : return str;
2647 : : }
2648 : :
2649 : : std::string
2650 : 0 : BareFunctionType::as_string () const
2651 : : {
2652 : 0 : std::string str ("BareFunctionType: \n For lifetimes: ");
2653 : :
2654 : 0 : if (!has_for_lifetimes ())
2655 : : {
2656 : 0 : str += "none";
2657 : : }
2658 : : else
2659 : : {
2660 : 0 : for (const auto &for_lifetime : for_lifetimes)
2661 : 0 : str += "\n " + for_lifetime.as_string ();
2662 : : }
2663 : :
2664 : 0 : str += "\n Qualifiers: " + function_qualifiers.as_string ();
2665 : :
2666 : 0 : str += "\n Params: ";
2667 : 0 : if (params.empty ())
2668 : : {
2669 : 0 : str += "none";
2670 : : }
2671 : : else
2672 : : {
2673 : 0 : for (const auto ¶m : params)
2674 : 0 : str += "\n " + param.as_string ();
2675 : : }
2676 : :
2677 : 0 : str += "\n Is variadic: ";
2678 : 0 : if (_is_variadic)
2679 : 0 : str += "true";
2680 : : else
2681 : 0 : str += "false";
2682 : :
2683 : 0 : str += "\n Return type: ";
2684 : 0 : if (!has_return_type ())
2685 : 0 : str += "none (void)";
2686 : : else
2687 : 0 : str += return_type->as_string ();
2688 : :
2689 : 0 : return str;
2690 : : }
2691 : :
2692 : : std::string
2693 : 0 : ImplTraitTypeOneBound::as_string () const
2694 : : {
2695 : 0 : std::string str ("ImplTraitTypeOneBound: \n TraitBound: ");
2696 : :
2697 : 0 : return str + trait_bound.as_string ();
2698 : 0 : }
2699 : :
2700 : : std::string
2701 : 7 : TraitObjectTypeOneBound::as_string () const
2702 : : {
2703 : 7 : std::string str ("TraitObjectTypeOneBound: \n Has dyn dispatch: ");
2704 : :
2705 : 7 : if (has_dyn)
2706 : 7 : str += "true";
2707 : : else
2708 : 0 : str += "false";
2709 : :
2710 : 7 : str += "\n TraitBound: " + trait_bound.as_string ();
2711 : :
2712 : 7 : return str;
2713 : : }
2714 : :
2715 : : std::string
2716 : 0 : ArrayType::as_string () const
2717 : : {
2718 : : // TODO: rewrite to work with non-linearisable types and exprs
2719 : 0 : return "[" + elem_type->as_string () + "; " + size->as_string () + "]";
2720 : : }
2721 : :
2722 : : std::string
2723 : 171 : SliceType::as_string () const
2724 : : {
2725 : : // TODO: rewrite to work with non-linearisable types
2726 : 342 : return "[" + elem_type->as_string () + "]";
2727 : : }
2728 : :
2729 : : std::string
2730 : 3589 : TupleType::as_string () const
2731 : : {
2732 : : // TODO: rewrite to work with non-linearisable types
2733 : 3589 : std::string str ("(");
2734 : :
2735 : 3589 : if (!is_unit_type ())
2736 : : {
2737 : : auto i = elems.begin ();
2738 : : auto e = elems.end ();
2739 : :
2740 : 0 : for (; i != e; i++)
2741 : : {
2742 : 0 : str += (*i)->as_string ();
2743 : 0 : if (e != i + 1)
2744 : 0 : str += ", ";
2745 : : }
2746 : : }
2747 : :
2748 : 3589 : str += ")";
2749 : :
2750 : 3589 : return str;
2751 : : }
2752 : :
2753 : : std::string
2754 : 0 : StructExpr::as_string () const
2755 : : {
2756 : 0 : std::string str = append_attributes (outer_attrs, OUTER);
2757 : 0 : indent_spaces (enter);
2758 : 0 : str += "\n" + indent_spaces (stay) + "StructExpr:";
2759 : 0 : indent_spaces (enter);
2760 : 0 : str += "\n" + indent_spaces (stay) + "PathInExpr:\n";
2761 : 0 : str += indent_spaces (stay) + struct_name.as_string ();
2762 : 0 : indent_spaces (out);
2763 : 0 : indent_spaces (out);
2764 : 0 : return str;
2765 : : }
2766 : :
2767 : : std::string
2768 : 0 : StructExprStruct::as_string () const
2769 : : {
2770 : : // TODO: doesn't this require data from StructExpr?
2771 : 0 : std::string str ("StructExprStruct (or subclass): ");
2772 : :
2773 : 0 : str += "\n Path: " + get_struct_name ().as_string ();
2774 : :
2775 : : // inner attributes
2776 : 0 : str += append_attributes (inner_attrs, INNER);
2777 : :
2778 : 0 : return str;
2779 : : }
2780 : :
2781 : : std::string
2782 : 0 : StructBase::as_string () const
2783 : : {
2784 : 0 : if (base_struct != nullptr)
2785 : 0 : return base_struct->as_string ();
2786 : : else
2787 : 0 : return "ERROR_MARK_STRING - invalid struct base had as string applied";
2788 : : }
2789 : :
2790 : : std::string
2791 : 0 : StructExprFieldWithVal::as_string () const
2792 : : {
2793 : : // used to get value string
2794 : 0 : return value->as_string ();
2795 : : }
2796 : :
2797 : : std::string
2798 : 0 : StructExprFieldIdentifierValue::as_string () const
2799 : : {
2800 : : // TODO: rewrite to work with non-linearisable exprs
2801 : 0 : return field_name.as_string () + " : " + StructExprFieldWithVal::as_string ();
2802 : : }
2803 : :
2804 : : std::string
2805 : 0 : StructExprFieldIndexValue::as_string () const
2806 : : {
2807 : : // TODO: rewrite to work with non-linearisable exprs
2808 : 0 : return std::to_string (index) + " : " + StructExprFieldWithVal::as_string ();
2809 : : }
2810 : :
2811 : : std::string
2812 : 0 : StructExprStructFields::as_string () const
2813 : : {
2814 : 0 : std::string str = StructExprStruct::as_string ();
2815 : :
2816 : 0 : str += "\n Fields: ";
2817 : 0 : if (fields.empty ())
2818 : : {
2819 : 0 : str += "none";
2820 : : }
2821 : : else
2822 : : {
2823 : 0 : for (const auto &field : fields)
2824 : 0 : str += "\n " + field->as_string ();
2825 : : }
2826 : :
2827 : 0 : str += "\n Struct base: ";
2828 : 0 : if (!has_struct_base ())
2829 : 0 : str += "none";
2830 : : else
2831 : 0 : str += struct_base.as_string ();
2832 : :
2833 : 0 : return str;
2834 : : }
2835 : :
2836 : : std::string
2837 : 0 : EnumItem::as_string () const
2838 : : {
2839 : 0 : std::string str = VisItem::as_string ();
2840 : 0 : str += variant_name.as_string ();
2841 : :
2842 : 0 : return str;
2843 : : }
2844 : :
2845 : : std::string
2846 : 0 : EnumItemTuple::as_string () const
2847 : : {
2848 : 0 : std::string str = EnumItem::as_string ();
2849 : :
2850 : : // add tuple opening parens
2851 : 0 : str += "(";
2852 : :
2853 : : // tuple fields
2854 : 0 : if (has_tuple_fields ())
2855 : : {
2856 : : auto i = tuple_fields.begin ();
2857 : : auto e = tuple_fields.end ();
2858 : :
2859 : 0 : for (; i != e; i++)
2860 : : {
2861 : 0 : str += (*i).as_string ();
2862 : 0 : if (e != i + 1)
2863 : 0 : str += ", ";
2864 : : }
2865 : : }
2866 : :
2867 : : // add tuple closing parens
2868 : 0 : str += ")";
2869 : :
2870 : 0 : return str;
2871 : : }
2872 : :
2873 : : std::string
2874 : 0 : TupleField::as_string () const
2875 : : {
2876 : : // TODO: rewrite to work with non-linearisable exprs
2877 : :
2878 : : // outer attributes
2879 : 0 : std::string str = append_attributes (outer_attrs, OUTER);
2880 : :
2881 : 0 : if (has_visibility ())
2882 : 0 : str += "\n" + visibility.as_string ();
2883 : :
2884 : 0 : str += " " + field_type->as_string ();
2885 : :
2886 : 0 : return str;
2887 : : }
2888 : :
2889 : : std::string
2890 : 0 : EnumItemStruct::as_string () const
2891 : : {
2892 : 0 : std::string str = EnumItem::as_string ();
2893 : :
2894 : : // add struct opening parens
2895 : 0 : str += "{";
2896 : :
2897 : : // tuple fields
2898 : 0 : if (has_struct_fields ())
2899 : : {
2900 : : auto i = struct_fields.begin ();
2901 : : auto e = struct_fields.end ();
2902 : :
2903 : 0 : for (; i != e; i++)
2904 : : {
2905 : 0 : str += (*i).as_string ();
2906 : 0 : if (e != i + 1)
2907 : 0 : str += ", ";
2908 : : }
2909 : : }
2910 : :
2911 : : // add struct closing parens
2912 : 0 : str += "}";
2913 : :
2914 : 0 : return str;
2915 : : }
2916 : :
2917 : : std::string
2918 : 0 : StructField::as_string () const
2919 : : {
2920 : : // TODO: rewrite to work with non-linearisable exprs
2921 : : // outer attributes
2922 : 0 : std::string str = append_attributes (outer_attrs, OUTER);
2923 : :
2924 : 0 : if (has_visibility ())
2925 : 0 : str += "\n" + visibility.as_string ();
2926 : :
2927 : 0 : str += " " + field_name.as_string () + " : " + field_type->as_string ();
2928 : :
2929 : 0 : return str;
2930 : : }
2931 : :
2932 : : std::string
2933 : 0 : EnumItemDiscriminant::as_string () const
2934 : : {
2935 : : // TODO: rewrite to work with non-linearisable exprs
2936 : 0 : std::string str = EnumItem::as_string ();
2937 : :
2938 : : // add equal and expression
2939 : 0 : str += " = " + expression->as_string ();
2940 : :
2941 : 0 : return str;
2942 : : }
2943 : :
2944 : : std::string
2945 : 0 : ExternalTypeItem::as_string () const
2946 : : {
2947 : 0 : auto str = append_attributes (outer_attrs, OUTER);
2948 : :
2949 : 0 : str += "type " + item_name.as_string () + ";";
2950 : :
2951 : 0 : return str;
2952 : : }
2953 : :
2954 : : std::string
2955 : 0 : ExternalStaticItem::as_string () const
2956 : : {
2957 : : // outer attributes
2958 : 0 : std::string str = append_attributes (outer_attrs, OUTER);
2959 : :
2960 : : // start visibility on new line and with a space
2961 : 0 : str += "\n" + visibility.as_string () + " ";
2962 : :
2963 : 0 : str += "static ";
2964 : :
2965 : 0 : if (has_mut)
2966 : 0 : str += "mut ";
2967 : :
2968 : : // add name
2969 : 0 : str += item_name.as_string ();
2970 : :
2971 : : // add type on new line
2972 : 0 : str += "\n Type: " + item_type->as_string ();
2973 : :
2974 : 0 : return str;
2975 : : }
2976 : :
2977 : : std::string
2978 : 0 : NamedFunctionParam::as_string () const
2979 : : {
2980 : 0 : std::string str = append_attributes (outer_attrs, OUTER);
2981 : :
2982 : 0 : if (has_name ())
2983 : 0 : str += "\n" + name;
2984 : :
2985 : 0 : if (is_variadic ())
2986 : 0 : str += "...";
2987 : : else
2988 : 0 : str += "\n Type: " + param_type->as_string ();
2989 : :
2990 : 0 : return str;
2991 : : }
2992 : :
2993 : : std::string
2994 : 0 : TraitItemConst::as_string () const
2995 : : {
2996 : : // TODO: rewrite to work with non-linearisable exprs
2997 : 0 : std::string str = append_attributes (outer_attrs, OUTER);
2998 : :
2999 : 0 : str += "\nconst " + name.as_string () + " : " + type->as_string ();
3000 : :
3001 : 0 : if (has_expression ())
3002 : 0 : str += " = " + expr->as_string ();
3003 : :
3004 : 0 : return str;
3005 : : }
3006 : :
3007 : : std::string
3008 : 0 : TraitItemType::as_string () const
3009 : : {
3010 : 0 : std::string str = append_attributes (outer_attrs, OUTER);
3011 : :
3012 : 0 : str += "\ntype " + name.as_string ();
3013 : :
3014 : 0 : str += "\n Type param bounds: ";
3015 : 0 : if (!has_type_param_bounds ())
3016 : : {
3017 : 0 : str += "none";
3018 : : }
3019 : : else
3020 : : {
3021 : 0 : for (const auto &bound : type_param_bounds)
3022 : : {
3023 : : // DEBUG: null pointer check
3024 : 0 : if (bound == nullptr)
3025 : : {
3026 : 0 : rust_debug (
3027 : : "something really terrible has gone wrong - null pointer "
3028 : : "type param bound in trait item type.");
3029 : 0 : return "NULL_POINTER_MARK";
3030 : : }
3031 : :
3032 : 0 : str += "\n " + bound->as_string ();
3033 : : }
3034 : : }
3035 : :
3036 : 0 : return str;
3037 : 0 : }
3038 : :
3039 : : std::string
3040 : 0 : SelfParam::as_string () const
3041 : : {
3042 : : // TODO: rewrite to allow non-linearisable types
3043 : 0 : if (is_error ())
3044 : : {
3045 : 0 : return "error";
3046 : : }
3047 : : else
3048 : : {
3049 : 0 : if (has_type ())
3050 : : {
3051 : : // type (i.e. not ref, no lifetime)
3052 : 0 : std::string str;
3053 : :
3054 : 0 : if (is_mut)
3055 : 0 : str += "mut ";
3056 : :
3057 : 0 : str += "self : ";
3058 : :
3059 : 0 : str += type->as_string ();
3060 : :
3061 : 0 : return str;
3062 : 0 : }
3063 : 0 : else if (has_lifetime ())
3064 : : {
3065 : : // ref and lifetime
3066 : 0 : std::string str = "&" + lifetime.as_string () + " ";
3067 : :
3068 : 0 : if (is_mut)
3069 : 0 : str += "mut ";
3070 : :
3071 : 0 : str += "self";
3072 : :
3073 : 0 : return str;
3074 : 0 : }
3075 : 0 : else if (has_ref)
3076 : : {
3077 : : // ref with no lifetime
3078 : 0 : std::string str = "&";
3079 : :
3080 : 0 : if (is_mut)
3081 : 0 : str += " mut ";
3082 : :
3083 : 0 : str += "self";
3084 : :
3085 : 0 : return str;
3086 : 0 : }
3087 : : else
3088 : : {
3089 : : // no ref, no type
3090 : 0 : std::string str;
3091 : :
3092 : 0 : if (is_mut)
3093 : 0 : str += "mut ";
3094 : :
3095 : 0 : str += "self";
3096 : :
3097 : 0 : return str;
3098 : 0 : }
3099 : : }
3100 : : }
3101 : :
3102 : : std::string
3103 : 0 : ArrayElemsCopied::as_string () const
3104 : : {
3105 : : // TODO: rewrite to allow non-linearisable exprs
3106 : 0 : return elem_to_copy->as_string () + "; " + num_copies->as_string ();
3107 : : }
3108 : :
3109 : : std::string
3110 : 0 : LifetimeWhereClauseItem::as_string () const
3111 : : {
3112 : 0 : std::string str ("Lifetime: ");
3113 : :
3114 : 0 : str += lifetime.as_string ();
3115 : :
3116 : 0 : str += "\nLifetime bounds: ";
3117 : :
3118 : 0 : for (const auto &bound : lifetime_bounds)
3119 : 0 : str += "\n " + bound.as_string ();
3120 : :
3121 : 0 : return str;
3122 : : }
3123 : :
3124 : : std::string
3125 : 0 : TypeBoundWhereClauseItem::as_string () const
3126 : : {
3127 : 0 : std::string str ("For lifetimes: ");
3128 : :
3129 : 0 : if (!has_for_lifetimes ())
3130 : : {
3131 : 0 : str += "none";
3132 : : }
3133 : : else
3134 : : {
3135 : 0 : for (const auto &for_lifetime : for_lifetimes)
3136 : 0 : str += "\n " + for_lifetime.as_string ();
3137 : : }
3138 : :
3139 : 0 : str += "\nType: " + bound_type->as_string ();
3140 : :
3141 : 0 : str += "\nType param bounds bounds: ";
3142 : :
3143 : 0 : for (const auto &bound : type_param_bounds)
3144 : : {
3145 : : // debug null pointer check
3146 : 0 : if (bound == nullptr)
3147 : 0 : return "NULL_POINTER_MARK - type param bounds";
3148 : :
3149 : 0 : str += "\n " + bound->as_string ();
3150 : : }
3151 : :
3152 : 0 : return str;
3153 : 0 : }
3154 : :
3155 : : std::string
3156 : 0 : ArrayElemsValues::as_string () const
3157 : : {
3158 : 0 : std::string str;
3159 : :
3160 : 0 : for (const auto &expr : values)
3161 : : {
3162 : : // DEBUG: null pointer check
3163 : 0 : if (expr == nullptr)
3164 : : {
3165 : 0 : rust_debug ("something really terrible has gone wrong - null pointer "
3166 : : "expr in array elems values.");
3167 : 0 : return "NULL_POINTER_MARK";
3168 : : }
3169 : :
3170 : 0 : str += "\n " + expr->as_string ();
3171 : : }
3172 : :
3173 : 0 : return str;
3174 : 0 : }
3175 : :
3176 : : std::string
3177 : 0 : MaybeNamedParam::as_string () const
3178 : : {
3179 : : // TODO: rewrite to allow using non-linearisable types in dump
3180 : 0 : std::string str;
3181 : :
3182 : 0 : switch (param_kind)
3183 : : {
3184 : : case UNNAMED:
3185 : : break;
3186 : 0 : case IDENTIFIER:
3187 : 0 : str = name.as_string () + " : ";
3188 : 0 : break;
3189 : 0 : case WILDCARD:
3190 : 0 : str = "_ : ";
3191 : 0 : break;
3192 : 0 : default:
3193 : 0 : return "ERROR_MARK_STRING - maybe named param unrecognised param kind";
3194 : : }
3195 : :
3196 : 0 : str += param_type->as_string ();
3197 : :
3198 : 0 : return str;
3199 : 0 : }
3200 : :
3201 : 1022 : MetaItemInner::~MetaItemInner () = default;
3202 : :
3203 : : std::unique_ptr<MetaNameValueStr>
3204 : 0 : MetaItemInner::to_meta_name_value_str () const
3205 : : {
3206 : 0 : if (is_key_value_pair ())
3207 : : {
3208 : 0 : auto converted_item = static_cast<const MetaNameValueStr *> (this);
3209 : 0 : return converted_item->to_meta_name_value_str ();
3210 : : }
3211 : : // TODO actually parse foo = bar
3212 : 0 : return nullptr;
3213 : : }
3214 : :
3215 : : std::string
3216 : 44 : MetaItemSeq::as_string () const
3217 : : {
3218 : 44 : std::string path_str = path.as_string () + "(";
3219 : :
3220 : 44 : auto i = seq.begin ();
3221 : 44 : auto e = seq.end ();
3222 : :
3223 : 99 : for (; i != e; i++)
3224 : : {
3225 : 55 : path_str += (*i)->as_string ();
3226 : 55 : if (e != i + 1)
3227 : 11 : path_str += ", ";
3228 : : }
3229 : :
3230 : 44 : return path_str + ")";
3231 : 44 : }
3232 : :
3233 : : std::string
3234 : 0 : MetaListPaths::as_string () const
3235 : : {
3236 : 0 : std::string str = ident.as_string () + "(";
3237 : :
3238 : 0 : auto i = paths.begin ();
3239 : 0 : auto e = paths.end ();
3240 : :
3241 : 0 : for (; i != e; i++)
3242 : : {
3243 : 0 : str += (*i).as_string ();
3244 : 0 : if (e != i + 1)
3245 : 0 : str += ", ";
3246 : : }
3247 : :
3248 : 0 : return str + ")";
3249 : 0 : }
3250 : :
3251 : : std::string
3252 : 0 : MetaListNameValueStr::as_string () const
3253 : : {
3254 : 0 : std::string str = ident.as_string () + "(";
3255 : :
3256 : 0 : auto i = strs.begin ();
3257 : 0 : auto e = strs.end ();
3258 : :
3259 : 0 : for (; i != e; i++)
3260 : : {
3261 : 0 : str += (*i).as_string ();
3262 : 0 : if (e != i + 1)
3263 : 0 : str += ", ";
3264 : : }
3265 : :
3266 : 0 : return str + ")";
3267 : 0 : }
3268 : :
3269 : : std::string
3270 : 568 : AttrInputMetaItemContainer::as_string () const
3271 : : {
3272 : 568 : std::string str = "(";
3273 : :
3274 : 568 : auto i = items.begin ();
3275 : 568 : auto e = items.end ();
3276 : :
3277 : 1136 : for (; i != e; i++)
3278 : : {
3279 : 568 : str += (*i)->as_string ();
3280 : 568 : if (e != i + 1)
3281 : 0 : str += ", ";
3282 : : }
3283 : :
3284 : 568 : return str + ")";
3285 : 568 : }
3286 : :
3287 : : std::string
3288 : 0 : AttrInputMacro::as_string () const
3289 : : {
3290 : 0 : return " = " + macro->as_string ();
3291 : : }
3292 : :
3293 : : /* Override that calls the function recursively on all items contained within
3294 : : * the module. */
3295 : : void
3296 : 0 : Module::add_crate_name (std::vector<std::string> &names) const
3297 : : {
3298 : : /* TODO: test whether module has been 'cfg'-ed out to determine whether to
3299 : : * exclude it from search */
3300 : :
3301 : 0 : for (const auto &item : items)
3302 : 0 : item->add_crate_name (names);
3303 : 0 : }
3304 : :
3305 : : static bool
3306 : 48 : file_exists (const std::string path)
3307 : : {
3308 : : // Simply check if the file exists
3309 : : // FIXME: This does not work on Windows
3310 : 0 : return access (path.c_str (), F_OK) != -1;
3311 : : }
3312 : :
3313 : : static std::string
3314 : 63 : filename_from_path_attribute (std::vector<Attribute> &outer_attrs)
3315 : : {
3316 : : // An out-of-line module cannot have inner attributes. Additionally, the
3317 : : // default name is specified as `""` so that the caller can detect the case
3318 : : // of "no path given" and use the default path logic (`name.rs` or
3319 : : // `name/mod.rs`).
3320 : 63 : return extract_module_path ({}, outer_attrs, "");
3321 : : }
3322 : :
3323 : : void
3324 : 63 : Module::process_file_path ()
3325 : : {
3326 : 63 : rust_assert (kind == Module::ModuleKind::UNLOADED);
3327 : 63 : rust_assert (module_file.empty ());
3328 : :
3329 : : // This corresponds to the path of the file 'including' the module. So the
3330 : : // file that contains the 'mod <file>;' directive
3331 : 63 : std::string including_fpath (outer_filename);
3332 : :
3333 : 63 : std::string expected_file_path = module_name.as_string () + ".rs";
3334 : 63 : std::string expected_dir_path = "mod.rs";
3335 : :
3336 : 63 : auto dir_slash_pos = including_fpath.rfind (file_separator);
3337 : 63 : std::string current_directory_name;
3338 : 63 : std::string including_fname;
3339 : :
3340 : : // If we haven't found a file_separator, then we may have to look for files in
3341 : : // the current directory ('.')
3342 : 63 : if (dir_slash_pos == std::string::npos)
3343 : : {
3344 : 0 : including_fname = std::move (including_fpath);
3345 : 0 : including_fpath = std::string (".") + file_separator + including_fname;
3346 : 0 : dir_slash_pos = 1;
3347 : : }
3348 : : else
3349 : : {
3350 : 63 : including_fname = including_fpath.substr (dir_slash_pos + 1);
3351 : : }
3352 : :
3353 : 63 : current_directory_name
3354 : 126 : = including_fpath.substr (0, dir_slash_pos) + file_separator;
3355 : :
3356 : 63 : auto path_string = filename_from_path_attribute (get_outer_attrs ());
3357 : :
3358 : 63 : std::string including_subdir;
3359 : 63 : if (path_string.empty () && module_scope.empty ()
3360 : 86 : && get_file_subdir (including_fname, including_subdir))
3361 : 23 : current_directory_name += including_subdir + file_separator;
3362 : :
3363 : : // Handle inline module declarations adding path components.
3364 : 68 : for (auto const &name : module_scope)
3365 : : {
3366 : 5 : current_directory_name.append (name);
3367 : 5 : current_directory_name.append (file_separator);
3368 : : }
3369 : :
3370 : 63 : if (!path_string.empty ())
3371 : : {
3372 : 39 : module_file = current_directory_name + path_string;
3373 : 39 : return;
3374 : : }
3375 : :
3376 : : // FIXME: We also have to search for
3377 : : // <directory>/<including_fname>/<module_name>.rs In rustc, this is done via
3378 : : // the concept of `DirOwnernship`, which is based on whether or not the
3379 : : // current file is titled `mod.rs`.
3380 : :
3381 : : // First, we search for <directory>/<module_name>.rs
3382 : 24 : std::string file_mod_path = current_directory_name + expected_file_path;
3383 : 24 : bool file_mod_found = file_exists (file_mod_path);
3384 : :
3385 : : // Then, search for <directory>/<module_name>/mod.rs
3386 : 24 : std::string dir_mod_path = current_directory_name + module_name.as_string ()
3387 : 24 : + file_separator + expected_dir_path;
3388 : 24 : bool dir_mod_found = file_exists (dir_mod_path);
3389 : :
3390 : 24 : bool multiple_candidates_found = file_mod_found && dir_mod_found;
3391 : 24 : bool no_candidates_found = !file_mod_found && !dir_mod_found;
3392 : :
3393 : 24 : if (multiple_candidates_found)
3394 : 0 : rust_error_at (locus,
3395 : : "two candidates found for module %s: %s.rs and %s%smod.rs",
3396 : 0 : module_name.as_string ().c_str (),
3397 : 0 : module_name.as_string ().c_str (),
3398 : 0 : module_name.as_string ().c_str (), file_separator);
3399 : :
3400 : 24 : if (no_candidates_found)
3401 : 7 : rust_error_at (locus, "no candidate found for module %s",
3402 : 7 : module_name.as_string ().c_str ());
3403 : :
3404 : 24 : if (no_candidates_found || multiple_candidates_found)
3405 : 7 : return;
3406 : :
3407 : 32 : module_file = std::move (file_mod_found ? file_mod_path : dir_mod_path);
3408 : 70 : }
3409 : :
3410 : : void
3411 : 63 : Module::load_items ()
3412 : : {
3413 : 63 : process_file_path ();
3414 : :
3415 : : // We will already have errored out appropriately in the process_file_path ()
3416 : : // method
3417 : 63 : if (module_file.empty ())
3418 : 14 : return;
3419 : :
3420 : 56 : RAIIFile file_wrap (module_file.c_str ());
3421 : 56 : Linemap *linemap = Session::get_instance ().linemap;
3422 : 56 : if (!file_wrap.ok ())
3423 : : {
3424 : 7 : rust_error_at (get_locus (), "cannot open module file %s: %m",
3425 : : module_file.c_str ());
3426 : 7 : return;
3427 : : }
3428 : :
3429 : 49 : rust_debug ("Attempting to parse file %s", module_file.c_str ());
3430 : :
3431 : 49 : Lexer lex (module_file.c_str (), std::move (file_wrap), linemap);
3432 : 49 : Parser<Lexer> parser (lex);
3433 : :
3434 : : // we need to parse any possible inner attributes for this module
3435 : 49 : inner_attrs = parser.parse_inner_attributes ();
3436 : 49 : auto parsed_items = parser.parse_items ();
3437 : 49 : for (const auto &error : parser.get_errors ())
3438 : 0 : error.emit ();
3439 : :
3440 : 49 : items = std::move (parsed_items);
3441 : 49 : kind = ModuleKind::LOADED;
3442 : 105 : }
3443 : :
3444 : : void
3445 : 291 : Attribute::parse_attr_to_meta_item ()
3446 : : {
3447 : : // only parse if has attribute input and not already parsed
3448 : 291 : if (!has_attr_input () || is_parsed_to_meta_item ())
3449 : 25 : return;
3450 : :
3451 : 266 : auto res = attr_input->parse_to_meta_item ();
3452 : 266 : std::unique_ptr<AttrInput> converted_input (res);
3453 : :
3454 : 266 : if (converted_input != nullptr)
3455 : 266 : attr_input = std::move (converted_input);
3456 : 266 : }
3457 : :
3458 : : AttrInputMetaItemContainer *
3459 : 750 : DelimTokenTree::parse_to_meta_item () const
3460 : : {
3461 : : // must have token trees
3462 : 750 : if (token_trees.empty ())
3463 : : return nullptr;
3464 : :
3465 : : /* assume top-level delim token tree in attribute - convert all nested ones
3466 : : * to token stream */
3467 : 750 : std::vector<std::unique_ptr<Token>> token_stream = to_token_stream ();
3468 : :
3469 : 750 : AttributeParser parser (std::move (token_stream));
3470 : 750 : std::vector<std::unique_ptr<MetaItemInner>> meta_items (
3471 : 750 : parser.parse_meta_item_seq ());
3472 : :
3473 : 750 : return new AttrInputMetaItemContainer (std::move (meta_items));
3474 : 750 : }
3475 : :
3476 : : std::unique_ptr<MetaItemInner>
3477 : 845 : AttributeParser::parse_meta_item_inner ()
3478 : : {
3479 : : // if first tok not identifier, not a "special" case one
3480 : 845 : if (peek_token ()->get_id () != IDENTIFIER)
3481 : : {
3482 : 27 : switch (peek_token ()->get_id ())
3483 : : {
3484 : 27 : case CHAR_LITERAL:
3485 : 27 : case STRING_LITERAL:
3486 : 27 : case BYTE_CHAR_LITERAL:
3487 : 27 : case BYTE_STRING_LITERAL:
3488 : 27 : case INT_LITERAL:
3489 : 27 : case FLOAT_LITERAL:
3490 : 27 : case TRUE_LITERAL:
3491 : 27 : case FALSE_LITERAL:
3492 : 27 : return parse_meta_item_lit ();
3493 : :
3494 : 0 : case SUPER:
3495 : 0 : case SELF:
3496 : 0 : case CRATE:
3497 : 0 : case DOLLAR_SIGN:
3498 : 0 : case SCOPE_RESOLUTION:
3499 : 0 : return parse_path_meta_item ();
3500 : :
3501 : 0 : default:
3502 : 0 : rust_error_at (peek_token ()->get_locus (),
3503 : : "unrecognised token '%s' in meta item",
3504 : 0 : get_token_description (peek_token ()->get_id ()));
3505 : 0 : return nullptr;
3506 : : }
3507 : : }
3508 : :
3509 : : // else, check for path
3510 : 818 : if (peek_token (1)->get_id () == SCOPE_RESOLUTION)
3511 : : {
3512 : : // path
3513 : 0 : return parse_path_meta_item ();
3514 : : }
3515 : :
3516 : 818 : auto ident = peek_token ()->as_string ();
3517 : 818 : auto ident_locus = peek_token ()->get_locus ();
3518 : :
3519 : 818 : if (is_end_meta_item_tok (peek_token (1)->get_id ()))
3520 : : {
3521 : : // meta word syntax
3522 : 601 : skip_token ();
3523 : 601 : return std::unique_ptr<MetaWord> (new MetaWord (ident, ident_locus));
3524 : : }
3525 : :
3526 : 217 : if (peek_token (1)->get_id () == EQUAL)
3527 : : {
3528 : : // maybe meta name value str syntax - check next 2 tokens
3529 : 163 : if (peek_token (2)->get_id () == STRING_LITERAL
3530 : 163 : && is_end_meta_item_tok (peek_token (3)->get_id ()))
3531 : : {
3532 : : // meta name value str syntax
3533 : 163 : auto &value_tok = peek_token (2);
3534 : 163 : auto value = value_tok->as_string ();
3535 : 163 : auto locus = value_tok->get_locus ();
3536 : :
3537 : 163 : skip_token (2);
3538 : :
3539 : : // remove the quotes from the string value
3540 : 163 : std::string raw_value = unquote_string (std::move (value));
3541 : :
3542 : 163 : return std::unique_ptr<MetaNameValueStr> (
3543 : : new MetaNameValueStr (ident, ident_locus, std::move (raw_value),
3544 : 326 : locus));
3545 : 163 : }
3546 : : else
3547 : : {
3548 : : // just interpret as path-based meta item
3549 : 0 : return parse_path_meta_item ();
3550 : : }
3551 : : }
3552 : :
3553 : 54 : if (peek_token (1)->get_id () != LEFT_PAREN)
3554 : : {
3555 : 0 : rust_error_at (peek_token (1)->get_locus (),
3556 : : "unexpected token '%s' after identifier in attribute",
3557 : 0 : get_token_description (peek_token (1)->get_id ()));
3558 : 0 : return nullptr;
3559 : : }
3560 : :
3561 : : // is it one of those special cases like not?
3562 : 54 : if (peek_token ()->get_id () == IDENTIFIER)
3563 : : {
3564 : 54 : return parse_path_meta_item ();
3565 : : }
3566 : :
3567 : 0 : auto meta_items = parse_meta_item_seq ();
3568 : :
3569 : : // pass for meta name value str
3570 : 0 : std::vector<MetaNameValueStr> meta_name_value_str_items;
3571 : 0 : for (const auto &item : meta_items)
3572 : : {
3573 : 0 : std::unique_ptr<MetaNameValueStr> converted_item
3574 : 0 : = item->to_meta_name_value_str ();
3575 : 0 : if (converted_item == nullptr)
3576 : : {
3577 : 0 : meta_name_value_str_items.clear ();
3578 : 0 : break;
3579 : : }
3580 : 0 : meta_name_value_str_items.push_back (std::move (*converted_item));
3581 : 0 : }
3582 : : // if valid, return this
3583 : 0 : if (!meta_name_value_str_items.empty ())
3584 : : {
3585 : 0 : return std::unique_ptr<MetaListNameValueStr> (
3586 : : new MetaListNameValueStr (ident, ident_locus,
3587 : 0 : std::move (meta_name_value_str_items)));
3588 : : }
3589 : :
3590 : : // // pass for meta list idents
3591 : : // std::vector<Identifier> ident_items;
3592 : : // for (const auto &item : meta_items)
3593 : : // {
3594 : : // std::unique_ptr<Identifier> converted_ident (item->to_ident_item ());
3595 : : // if (converted_ident == nullptr)
3596 : : // {
3597 : : // ident_items.clear ();
3598 : : // break;
3599 : : // }
3600 : : // ident_items.push_back (std::move (*converted_ident));
3601 : : // }
3602 : : // // if valid return this
3603 : : // if (!ident_items.empty ())
3604 : : // {
3605 : : // return std::unique_ptr<MetaListIdents> (
3606 : : // new MetaListIdents (std::move (ident), std::move (ident_items)));
3607 : : // }
3608 : : // // as currently no meta list ident, currently no path. may change in future
3609 : :
3610 : : // pass for meta list paths
3611 : 0 : std::vector<SimplePath> path_items;
3612 : 0 : for (const auto &item : meta_items)
3613 : : {
3614 : 0 : SimplePath converted_path (item->to_path_item ());
3615 : 0 : if (converted_path.is_empty ())
3616 : : {
3617 : 0 : path_items.clear ();
3618 : 0 : break;
3619 : : }
3620 : 0 : path_items.push_back (std::move (converted_path));
3621 : 0 : }
3622 : 0 : if (!path_items.empty ())
3623 : : {
3624 : 0 : return std::unique_ptr<MetaListPaths> (
3625 : 0 : new MetaListPaths (ident, ident_locus, std::move (path_items)));
3626 : : }
3627 : :
3628 : 0 : rust_error_at (UNKNOWN_LOCATION, "failed to parse any meta item inner");
3629 : 0 : return nullptr;
3630 : 818 : }
3631 : :
3632 : : bool
3633 : 981 : AttributeParser::is_end_meta_item_tok (TokenId id) const
3634 : : {
3635 : 981 : return id == COMMA || id == RIGHT_PAREN;
3636 : : }
3637 : :
3638 : : std::unique_ptr<MetaItem>
3639 : 54 : AttributeParser::parse_path_meta_item ()
3640 : : {
3641 : 54 : SimplePath path = parse_simple_path ();
3642 : 54 : if (path.is_empty ())
3643 : : {
3644 : 0 : rust_error_at (peek_token ()->get_locus (),
3645 : : "failed to parse simple path in attribute");
3646 : 0 : return nullptr;
3647 : : }
3648 : :
3649 : 54 : switch (peek_token ()->get_id ())
3650 : : {
3651 : 54 : case LEFT_PAREN: {
3652 : 54 : std::vector<std::unique_ptr<MetaItemInner>> meta_items
3653 : 54 : = parse_meta_item_seq ();
3654 : :
3655 : 54 : return std::unique_ptr<MetaItemSeq> (
3656 : 108 : new MetaItemSeq (std::move (path), std::move (meta_items)));
3657 : 54 : }
3658 : 0 : case EQUAL: {
3659 : 0 : skip_token ();
3660 : :
3661 : 0 : location_t locus = peek_token ()->get_locus ();
3662 : 0 : Literal lit = parse_literal ();
3663 : 0 : if (lit.is_error ())
3664 : : {
3665 : 0 : rust_error_at (peek_token ()->get_locus (),
3666 : : "failed to parse literal in attribute");
3667 : 0 : return nullptr;
3668 : : }
3669 : 0 : LiteralExpr expr (std::move (lit), {}, locus);
3670 : : // stream_pos++;
3671 : : /* shouldn't be required anymore due to parsing literal actually
3672 : : * skipping the token */
3673 : 0 : return std::unique_ptr<MetaItemPathLit> (
3674 : 0 : new MetaItemPathLit (std::move (path), std::move (expr)));
3675 : 0 : }
3676 : 0 : case COMMA:
3677 : : // just simple path
3678 : 0 : return std::unique_ptr<MetaItemPath> (
3679 : 0 : new MetaItemPath (std::move (path)));
3680 : 0 : default:
3681 : 0 : rust_error_at (peek_token ()->get_locus (),
3682 : : "unrecognised token '%s' in meta item",
3683 : 0 : get_token_description (peek_token ()->get_id ()));
3684 : 0 : return nullptr;
3685 : : }
3686 : 54 : }
3687 : :
3688 : : /* Parses a parenthesised sequence of meta item inners. Parentheses are
3689 : : * required here. */
3690 : : std::vector<std::unique_ptr<MetaItemInner>>
3691 : 804 : AttributeParser::parse_meta_item_seq ()
3692 : : {
3693 : 804 : int vec_length = token_stream.size ();
3694 : 804 : std::vector<std::unique_ptr<MetaItemInner>> meta_items;
3695 : :
3696 : 804 : if (peek_token ()->get_id () != LEFT_PAREN)
3697 : : {
3698 : 0 : rust_error_at (peek_token ()->get_locus (),
3699 : : "missing left paren in delim token tree");
3700 : 0 : return {};
3701 : : }
3702 : 804 : skip_token ();
3703 : :
3704 : 847 : while (stream_pos < vec_length && peek_token ()->get_id () != RIGHT_PAREN)
3705 : : {
3706 : 845 : std::unique_ptr<MetaItemInner> inner = parse_meta_item_inner ();
3707 : 845 : if (inner == nullptr)
3708 : : {
3709 : 0 : rust_error_at (peek_token ()->get_locus (),
3710 : : "failed to parse inner meta item in attribute");
3711 : 0 : return {};
3712 : : }
3713 : 845 : meta_items.push_back (std::move (inner));
3714 : :
3715 : 845 : if (peek_token ()->get_id () != COMMA)
3716 : : break;
3717 : :
3718 : 43 : skip_token ();
3719 : 845 : }
3720 : :
3721 : 804 : if (peek_token ()->get_id () != RIGHT_PAREN)
3722 : : {
3723 : 0 : rust_error_at (peek_token ()->get_locus (),
3724 : : "missing right paren in delim token tree");
3725 : 0 : return {};
3726 : : }
3727 : 804 : skip_token ();
3728 : :
3729 : 804 : return meta_items;
3730 : 804 : }
3731 : :
3732 : : /* Collects any nested token trees into a flat token stream, suitable for
3733 : : * parsing. */
3734 : : std::vector<std::unique_ptr<Token>>
3735 : 13943 : DelimTokenTree::to_token_stream () const
3736 : : {
3737 : 13943 : std::vector<std::unique_ptr<Token>> tokens;
3738 : 98986 : for (const auto &tree : token_trees)
3739 : : {
3740 : 85043 : std::vector<std::unique_ptr<Token>> stream = tree->to_token_stream ();
3741 : :
3742 : 85043 : tokens.insert (tokens.end (), std::make_move_iterator (stream.begin ()),
3743 : : std::make_move_iterator (stream.end ()));
3744 : 85043 : }
3745 : :
3746 : 13943 : tokens.shrink_to_fit ();
3747 : 13943 : return tokens;
3748 : : }
3749 : :
3750 : : Literal
3751 : 27 : AttributeParser::parse_literal ()
3752 : : {
3753 : 27 : const std::unique_ptr<Token> &tok = peek_token ();
3754 : 27 : switch (tok->get_id ())
3755 : : {
3756 : 0 : case CHAR_LITERAL:
3757 : 0 : skip_token ();
3758 : 0 : return Literal (tok->as_string (), Literal::CHAR, tok->get_type_hint ());
3759 : 21 : case STRING_LITERAL:
3760 : 21 : skip_token ();
3761 : 63 : return Literal (tok->as_string (), Literal::STRING,
3762 : 63 : tok->get_type_hint ());
3763 : 0 : case BYTE_CHAR_LITERAL:
3764 : 0 : skip_token ();
3765 : 0 : return Literal (tok->as_string (), Literal::BYTE, tok->get_type_hint ());
3766 : 0 : case BYTE_STRING_LITERAL:
3767 : 0 : skip_token ();
3768 : 0 : return Literal (tok->as_string (), Literal::BYTE_STRING,
3769 : 0 : tok->get_type_hint ());
3770 : 6 : case INT_LITERAL:
3771 : 6 : skip_token ();
3772 : 6 : return Literal (tok->as_string (), Literal::INT, tok->get_type_hint ());
3773 : 0 : case FLOAT_LITERAL:
3774 : 0 : skip_token ();
3775 : 0 : return Literal (tok->as_string (), Literal::FLOAT, tok->get_type_hint ());
3776 : 0 : case TRUE_LITERAL:
3777 : 0 : skip_token ();
3778 : 0 : return Literal ("true", Literal::BOOL, tok->get_type_hint ());
3779 : 0 : case FALSE_LITERAL:
3780 : 0 : skip_token ();
3781 : 0 : return Literal ("false", Literal::BOOL, tok->get_type_hint ());
3782 : 0 : default:
3783 : 0 : rust_error_at (tok->get_locus (), "expected literal - found '%s'",
3784 : : get_token_description (tok->get_id ()));
3785 : 0 : return Literal::create_error ();
3786 : : }
3787 : : }
3788 : :
3789 : : SimplePath
3790 : 54 : AttributeParser::parse_simple_path ()
3791 : : {
3792 : 54 : bool has_opening_scope_res = false;
3793 : 54 : if (peek_token ()->get_id () == SCOPE_RESOLUTION)
3794 : : {
3795 : 0 : has_opening_scope_res = true;
3796 : 0 : skip_token ();
3797 : : }
3798 : :
3799 : 54 : std::vector<SimplePathSegment> segments;
3800 : :
3801 : 54 : SimplePathSegment segment = parse_simple_path_segment ();
3802 : 54 : if (segment.is_error ())
3803 : : {
3804 : 0 : rust_error_at (
3805 : 0 : peek_token ()->get_locus (),
3806 : : "failed to parse simple path segment in attribute simple path");
3807 : 0 : return SimplePath::create_empty ();
3808 : : }
3809 : 54 : segments.push_back (std::move (segment));
3810 : :
3811 : 54 : while (peek_token ()->get_id () == SCOPE_RESOLUTION)
3812 : : {
3813 : 0 : skip_token ();
3814 : :
3815 : 0 : SimplePathSegment segment = parse_simple_path_segment ();
3816 : 0 : if (segment.is_error ())
3817 : : {
3818 : 0 : rust_error_at (
3819 : 0 : peek_token ()->get_locus (),
3820 : : "failed to parse simple path segment in attribute simple path");
3821 : 0 : return SimplePath::create_empty ();
3822 : : }
3823 : 0 : segments.push_back (std::move (segment));
3824 : 0 : }
3825 : 54 : segments.shrink_to_fit ();
3826 : :
3827 : 54 : return SimplePath (std::move (segments), has_opening_scope_res);
3828 : 54 : }
3829 : :
3830 : : SimplePathSegment
3831 : 54 : AttributeParser::parse_simple_path_segment ()
3832 : : {
3833 : 54 : const std::unique_ptr<Token> &tok = peek_token ();
3834 : 54 : switch (tok->get_id ())
3835 : : {
3836 : 54 : case IDENTIFIER:
3837 : 54 : skip_token ();
3838 : 54 : return SimplePathSegment (tok->as_string (), tok->get_locus ());
3839 : 0 : case SUPER:
3840 : 0 : skip_token ();
3841 : 0 : return SimplePathSegment ("super", tok->get_locus ());
3842 : 0 : case SELF:
3843 : 0 : skip_token ();
3844 : 0 : return SimplePathSegment ("self", tok->get_locus ());
3845 : 0 : case CRATE:
3846 : 0 : skip_token ();
3847 : 0 : return SimplePathSegment ("crate", tok->get_locus ());
3848 : 0 : case DOLLAR_SIGN:
3849 : 0 : if (peek_token (1)->get_id () == CRATE)
3850 : : {
3851 : 0 : skip_token (1);
3852 : 0 : return SimplePathSegment ("$crate", tok->get_locus ());
3853 : : }
3854 : 0 : gcc_fallthrough ();
3855 : 0 : default:
3856 : 0 : rust_error_at (tok->get_locus (),
3857 : : "unexpected token '%s' in simple path segment",
3858 : : get_token_description (tok->get_id ()));
3859 : 0 : return SimplePathSegment::create_error ();
3860 : : }
3861 : : }
3862 : :
3863 : : std::unique_ptr<MetaItemLitExpr>
3864 : 27 : AttributeParser::parse_meta_item_lit ()
3865 : : {
3866 : 27 : location_t locus = peek_token ()->get_locus ();
3867 : 27 : LiteralExpr lit_expr (parse_literal (), {}, locus);
3868 : 27 : return std::unique_ptr<MetaItemLitExpr> (
3869 : 27 : new MetaItemLitExpr (std::move (lit_expr)));
3870 : 27 : }
3871 : :
3872 : : bool
3873 : 0 : AttrInputMetaItemContainer::check_cfg_predicate (const Session &session) const
3874 : : {
3875 : 0 : if (items.empty ())
3876 : : return false;
3877 : :
3878 : 0 : for (const auto &inner_item : items)
3879 : : {
3880 : 0 : if (!inner_item->check_cfg_predicate (session))
3881 : 0 : return false;
3882 : : }
3883 : :
3884 : : return true;
3885 : : }
3886 : :
3887 : : bool
3888 : 0 : MetaItemLitExpr::check_cfg_predicate (const Session &) const
3889 : : {
3890 : : /* as far as I can tell, a literal expr can never be a valid cfg body, so
3891 : : * false */
3892 : 0 : return false;
3893 : : }
3894 : :
3895 : : bool
3896 : 0 : MetaListNameValueStr::check_cfg_predicate (const Session &session) const
3897 : : {
3898 : 0 : if (ident.as_string () == "all")
3899 : : {
3900 : 0 : for (const auto &str : strs)
3901 : : {
3902 : 0 : if (!str.check_cfg_predicate (session))
3903 : 0 : return false;
3904 : : }
3905 : : return true;
3906 : : }
3907 : 0 : else if (ident.as_string () == "any")
3908 : : {
3909 : 0 : for (const auto &str : strs)
3910 : : {
3911 : 0 : if (str.check_cfg_predicate (session))
3912 : 0 : return true;
3913 : : }
3914 : : return false;
3915 : : }
3916 : 0 : else if (ident.as_string () == "not")
3917 : : {
3918 : 0 : if (strs.size () != 1)
3919 : : {
3920 : : /* HACK: convert vector platform-dependent size_type to string to
3921 : : * use in printf */
3922 : 0 : rust_error_at (UNKNOWN_LOCATION,
3923 : : "cfg predicate could not be checked for "
3924 : : "MetaListNameValueStr with ident of "
3925 : : "'not' because there are '%s' elements, not '1'",
3926 : 0 : std::to_string (strs.size ()).c_str ());
3927 : 0 : return false;
3928 : : }
3929 : :
3930 : 0 : return !strs[0].check_cfg_predicate (session);
3931 : : }
3932 : : else
3933 : : {
3934 : 0 : rust_error_at (UNKNOWN_LOCATION,
3935 : : "cfg predicate could not be checked for "
3936 : : "MetaListNameValueStr with ident of "
3937 : : "'%s' - ident must be 'all' or 'any'",
3938 : 0 : ident.as_string ().c_str ());
3939 : 0 : return false;
3940 : : }
3941 : : }
3942 : :
3943 : : bool
3944 : 0 : MetaListPaths::check_cfg_predicate (const Session &session) const
3945 : : {
3946 : 0 : if (ident.as_string () == "all")
3947 : : {
3948 : 0 : for (const auto &path : paths)
3949 : : {
3950 : 0 : if (!check_path_exists_in_cfg (session, path))
3951 : 0 : return false;
3952 : : }
3953 : : return true;
3954 : : }
3955 : 0 : else if (ident.as_string () == "any")
3956 : : {
3957 : 0 : for (const auto &path : paths)
3958 : : {
3959 : 0 : if (check_path_exists_in_cfg (session, path))
3960 : 0 : return true;
3961 : : }
3962 : : return false;
3963 : : }
3964 : 0 : else if (ident.as_string () == "not")
3965 : : {
3966 : 0 : if (paths.size () != 1)
3967 : : {
3968 : : // HACK: convert vector platform-dependent size_type to string to
3969 : : // use in printf
3970 : 0 : rust_error_at (UNKNOWN_LOCATION,
3971 : : "cfg predicate could not be checked for MetaListPaths "
3972 : : "with ident of 'not' "
3973 : : "because there are '%s' elements, not '1'",
3974 : 0 : std::to_string (paths.size ()).c_str ());
3975 : 0 : return false;
3976 : : }
3977 : :
3978 : 0 : return !check_path_exists_in_cfg (session, paths[0]);
3979 : : }
3980 : : else
3981 : : {
3982 : 0 : rust_error_at (UNKNOWN_LOCATION,
3983 : : "cfg predicate could not be checked for "
3984 : : "MetaListNameValueStr with ident of "
3985 : : "'%s' - ident must be 'all' or 'any'",
3986 : 0 : ident.as_string ().c_str ());
3987 : 0 : return false;
3988 : : }
3989 : : }
3990 : :
3991 : : bool
3992 : 0 : MetaListPaths::check_path_exists_in_cfg (const Session &session,
3993 : : const SimplePath &path) const
3994 : : {
3995 : 0 : return session.options.target_data.has_key (path.as_string ());
3996 : : }
3997 : :
3998 : : bool
3999 : 33 : MetaItemSeq::check_cfg_predicate (const Session &session) const
4000 : : {
4001 : 33 : if (path.as_string () == "all")
4002 : : {
4003 : 13 : for (const auto &item : seq)
4004 : : {
4005 : 11 : if (!item->check_cfg_predicate (session))
4006 : 7 : return false;
4007 : : }
4008 : : return true;
4009 : : }
4010 : 24 : else if (path.as_string () == "any")
4011 : : {
4012 : 2 : for (const auto &item : seq)
4013 : : {
4014 : 2 : if (item->check_cfg_predicate (session))
4015 : 4 : return true;
4016 : : }
4017 : : return false;
4018 : : }
4019 : 22 : else if (path.as_string () == "not")
4020 : : {
4021 : 22 : if (seq.size () != 1)
4022 : : {
4023 : : /* HACK: convert vector platform-dependent size_type to string to
4024 : : * use in printf */
4025 : 0 : rust_error_at (UNKNOWN_LOCATION,
4026 : : "cfg predicate could not be checked for MetaItemSeq "
4027 : : "with ident of 'not' "
4028 : : "because there are '%s' elements, not '1'",
4029 : 0 : std::to_string (seq.size ()).c_str ());
4030 : 0 : return false;
4031 : : }
4032 : :
4033 : 22 : return !seq[0]->check_cfg_predicate (session);
4034 : : }
4035 : : else
4036 : : {
4037 : 0 : rust_error_at (
4038 : : UNKNOWN_LOCATION,
4039 : : "cfg predicate could not be checked for MetaItemSeq with path of "
4040 : : "'%s' - path must be 'all' or 'any'",
4041 : 0 : path.as_string ().c_str ());
4042 : 0 : return false;
4043 : : }
4044 : : }
4045 : :
4046 : : bool
4047 : 214 : MetaWord::check_cfg_predicate (const Session &session) const
4048 : : {
4049 : 214 : return session.options.target_data.has_key (ident.as_string ());
4050 : : }
4051 : :
4052 : : bool
4053 : 0 : MetaItemPath::check_cfg_predicate (const Session &session) const
4054 : : {
4055 : : /* Strictly speaking, this should always be false, but maybe do check
4056 : : * relating to SimplePath being identifier. Currently, it would return true
4057 : : * if path as identifier existed, and if the path in string form existed
4058 : : * (though this shouldn't occur). */
4059 : 0 : return session.options.target_data.has_key (path.as_string ());
4060 : : }
4061 : :
4062 : : bool
4063 : 414 : MetaNameValueStr::check_cfg_predicate (const Session &session) const
4064 : : {
4065 : : // DEBUG
4066 : 421 : rust_debug (
4067 : : "checked key-value pair for cfg: '%s', '%s' - is%s in target data",
4068 : : ident.as_string ().c_str (), str.c_str (),
4069 : : session.options.target_data.has_key_value_pair (ident.as_string (), str)
4070 : : ? ""
4071 : : : " not");
4072 : :
4073 : 414 : return session.options.target_data.has_key_value_pair (ident.as_string (),
4074 : 414 : str);
4075 : : }
4076 : :
4077 : : bool
4078 : 0 : MetaItemPathLit::check_cfg_predicate (const Session &session) const
4079 : : {
4080 : 0 : return session.options.target_data.has_key_value_pair (path.as_string (),
4081 : 0 : lit.as_string ());
4082 : : }
4083 : :
4084 : : std::vector<std::unique_ptr<Token>>
4085 : 79463 : Token::to_token_stream () const
4086 : : {
4087 : : /* initialisation list doesn't work as it needs copy constructor, so have to
4088 : : * do this */
4089 : 79463 : std::vector<std::unique_ptr<Token>> dummy_vector;
4090 : 79463 : dummy_vector.reserve (1);
4091 : 79463 : dummy_vector.push_back (std::unique_ptr<Token> (clone_token_impl ()));
4092 : 79463 : return dummy_vector;
4093 : : }
4094 : :
4095 : : Attribute
4096 : 0 : MetaNameValueStr::to_attribute () const
4097 : : {
4098 : 0 : LiteralExpr lit_expr (str, Literal::LitType::STRING,
4099 : 0 : PrimitiveCoreType::CORETYPE_UNKNOWN, {}, str_locus);
4100 : : // FIXME: What location do we put here? Is the literal above supposed to have
4101 : : // an empty location as well?
4102 : : // Should MetaNameValueStr keep a location?
4103 : 0 : return Attribute (SimplePath::from_str (ident.as_string (), ident_locus),
4104 : 0 : std::unique_ptr<AttrInputLiteral> (
4105 : 0 : new AttrInputLiteral (std::move (lit_expr))));
4106 : 0 : }
4107 : :
4108 : : Attribute
4109 : 0 : MetaItemPath::to_attribute () const
4110 : : {
4111 : 0 : return Attribute (path, nullptr);
4112 : : }
4113 : :
4114 : : Attribute
4115 : 4 : MetaItemSeq::to_attribute () const
4116 : : {
4117 : 4 : std::vector<std::unique_ptr<MetaItemInner>> new_seq;
4118 : 4 : new_seq.reserve (seq.size ());
4119 : 8 : for (const auto &e : seq)
4120 : 4 : new_seq.push_back (e->clone_meta_item_inner ());
4121 : :
4122 : 4 : std::unique_ptr<AttrInputMetaItemContainer> new_seq_container (
4123 : 4 : new AttrInputMetaItemContainer (std::move (new_seq)));
4124 : 4 : return Attribute (path, std::move (new_seq_container));
4125 : 4 : }
4126 : :
4127 : : Attribute
4128 : 0 : MetaWord::to_attribute () const
4129 : : {
4130 : 0 : return Attribute (SimplePath::from_str (ident.as_string (), ident_locus),
4131 : 0 : nullptr);
4132 : : }
4133 : :
4134 : : Attribute
4135 : 0 : MetaListPaths::to_attribute () const
4136 : : {
4137 : : /* probably one of the most annoying conversions - have to lose specificity by
4138 : : * turning it into just AttrInputMetaItemContainer (i.e. paths-only nature is
4139 : : * no longer known). If conversions back are required, might have to do a
4140 : : * "check all are paths" pass or something. */
4141 : :
4142 : 0 : std::vector<std::unique_ptr<MetaItemInner>> new_seq;
4143 : 0 : new_seq.reserve (paths.size ());
4144 : 0 : for (const auto &e : paths)
4145 : 0 : new_seq.push_back (std::unique_ptr<MetaItemPath> (new MetaItemPath (e)));
4146 : :
4147 : 0 : std::unique_ptr<AttrInputMetaItemContainer> new_seq_container (
4148 : 0 : new AttrInputMetaItemContainer (std::move (new_seq)));
4149 : 0 : return Attribute (SimplePath::from_str (ident.as_string (), ident_locus),
4150 : 0 : std::move (new_seq_container));
4151 : 0 : }
4152 : :
4153 : : Attribute
4154 : 0 : MetaListNameValueStr::to_attribute () const
4155 : : {
4156 : 0 : std::vector<std::unique_ptr<MetaItemInner>> new_seq;
4157 : 0 : new_seq.reserve (strs.size ());
4158 : 0 : for (const auto &e : strs)
4159 : 0 : new_seq.push_back (
4160 : 0 : std::unique_ptr<MetaNameValueStr> (new MetaNameValueStr (e)));
4161 : :
4162 : 0 : std::unique_ptr<AttrInputMetaItemContainer> new_seq_container (
4163 : 0 : new AttrInputMetaItemContainer (std::move (new_seq)));
4164 : 0 : return Attribute (SimplePath::from_str (ident.as_string (), ident_locus),
4165 : 0 : std::move (new_seq_container));
4166 : 0 : }
4167 : :
4168 : : Attribute
4169 : 0 : MetaItemPathLit::to_attribute () const
4170 : : {
4171 : 0 : return Attribute (path, std::unique_ptr<AttrInputLiteral> (
4172 : 0 : new AttrInputLiteral (lit)));
4173 : : }
4174 : :
4175 : : std::vector<Attribute>
4176 : 4 : AttrInputMetaItemContainer::separate_cfg_attrs () const
4177 : : {
4178 : 4 : rust_assert (!items.empty ());
4179 : :
4180 : 4 : if (items.size () == 1)
4181 : 0 : return {};
4182 : :
4183 : 4 : std::vector<Attribute> attrs;
4184 : 4 : attrs.reserve (items.size () - 1);
4185 : :
4186 : 8 : for (auto it = items.begin () + 1; it != items.end (); ++it)
4187 : : {
4188 : 4 : Attribute attr = (*it)->to_attribute ();
4189 : 4 : if (attr.is_empty ())
4190 : : {
4191 : : /* TODO should this be an error that causes us to chuck out
4192 : : * everything? */
4193 : 0 : continue;
4194 : : }
4195 : 4 : attrs.push_back (std::move (attr));
4196 : 4 : }
4197 : :
4198 : 4 : attrs.shrink_to_fit ();
4199 : 4 : return attrs;
4200 : 4 : }
4201 : :
4202 : : bool
4203 : 579 : Attribute::check_cfg_predicate (const Session &session) const
4204 : : {
4205 : : /* assume that cfg predicate actually can exist, i.e. attribute has cfg or
4206 : : * cfg_attr path */
4207 : 1158 : if (!has_attr_input ()
4208 : 1158 : || (path.as_string () != Values::Attributes::CFG
4209 : 590 : && path.as_string () != Values::Attributes::CFG_ATTR))
4210 : : {
4211 : : // DEBUG message
4212 : 0 : rust_debug (
4213 : : "tried to check cfg predicate on attr that either has no input "
4214 : : "or invalid path. attr: '%s'",
4215 : : as_string ().c_str ());
4216 : :
4217 : 0 : return false;
4218 : : }
4219 : :
4220 : : // assume that it has already been parsed
4221 : 579 : if (!is_parsed_to_meta_item ())
4222 : : return false;
4223 : :
4224 : 579 : auto &meta_item = static_cast<AttrInputMetaItemContainer &> (*attr_input);
4225 : 579 : return meta_item.get_items ().front ()->check_cfg_predicate (session);
4226 : : }
4227 : :
4228 : : std::vector<Attribute>
4229 : 4 : Attribute::separate_cfg_attrs () const
4230 : : {
4231 : 8 : if (!has_attr_input () || path.as_string () != Values::Attributes::CFG_ATTR)
4232 : 0 : return {};
4233 : :
4234 : : // assume that it has already been parsed
4235 : 4 : if (!is_parsed_to_meta_item ())
4236 : 0 : return {};
4237 : :
4238 : 4 : return attr_input->separate_cfg_attrs ();
4239 : : }
4240 : :
4241 : : bool
4242 : 2021 : Attribute::is_parsed_to_meta_item () const
4243 : : {
4244 : 2021 : return has_attr_input () && attr_input->is_meta_item ();
4245 : : }
4246 : :
4247 : : void
4248 : 17852 : BlockExpr::normalize_tail_expr ()
4249 : : {
4250 : 17852 : if (!expr)
4251 : : {
4252 : : // HACK: try to turn the last statement into a tail expression
4253 : 9415 : if (!statements.empty () && statements.back ()->is_expr ())
4254 : : {
4255 : : // Watch out: This reference become invalid when the vector is
4256 : : // modified.
4257 : 5854 : auto &stmt = static_cast<ExprStmt &> (*statements.back ());
4258 : :
4259 : 5854 : if (!stmt.is_semicolon_followed ())
4260 : : {
4261 : 17 : expr = std::move (stmt.take_expr ());
4262 : 17 : statements.pop_back ();
4263 : : }
4264 : : }
4265 : : }
4266 : 17852 : }
4267 : :
4268 : : // needed here because "rust-expr.h" doesn't include "rust-macro.h"
4269 : 1 : AttrInputMacro::AttrInputMacro (const AttrInputMacro &oth)
4270 : 1 : : macro (oth.macro->clone_macro_invocation_impl ())
4271 : 1 : {}
4272 : :
4273 : : void
4274 : 0 : AttrInputMacro::operator= (const AttrInputMacro &oth)
4275 : : {
4276 : 0 : macro = std::unique_ptr<MacroInvocation> (
4277 : 0 : oth.macro->clone_macro_invocation_impl ());
4278 : 0 : }
4279 : :
4280 : : /* Visitor implementations - these are short but inlining can't happen anyway
4281 : : * due to virtual functions and I didn't want to make the ast header includes
4282 : : * any longer than they already are. */
4283 : :
4284 : : void
4285 : 14973 : Token::accept_vis (ASTVisitor &vis)
4286 : : {
4287 : 14973 : vis.visit (*this);
4288 : 14973 : }
4289 : :
4290 : : void
4291 : 1965 : DelimTokenTree::accept_vis (ASTVisitor &vis)
4292 : : {
4293 : 1965 : vis.visit (*this);
4294 : 1965 : }
4295 : :
4296 : : void
4297 : 138752 : IdentifierExpr::accept_vis (ASTVisitor &vis)
4298 : : {
4299 : 138752 : vis.visit (*this);
4300 : 138751 : }
4301 : :
4302 : : void
4303 : 65 : Lifetime::accept_vis (ASTVisitor &vis)
4304 : : {
4305 : 65 : vis.visit (*this);
4306 : 65 : }
4307 : :
4308 : : void
4309 : 1234 : LifetimeParam::accept_vis (ASTVisitor &vis)
4310 : : {
4311 : 1234 : vis.visit (*this);
4312 : 1234 : }
4313 : :
4314 : : void
4315 : 1683364 : LiteralExpr::accept_vis (ASTVisitor &vis)
4316 : : {
4317 : 1683364 : vis.visit (*this);
4318 : 1683364 : }
4319 : :
4320 : : void
4321 : 0 : AttrInputLiteral::accept_vis (ASTVisitor &vis)
4322 : : {
4323 : 0 : vis.visit (*this);
4324 : 0 : }
4325 : :
4326 : : void
4327 : 0 : AttrInputMacro::accept_vis (ASTVisitor &vis)
4328 : : {
4329 : 0 : vis.visit (*this);
4330 : 0 : }
4331 : :
4332 : : void
4333 : 0 : MetaItemLitExpr::accept_vis (ASTVisitor &vis)
4334 : : {
4335 : 0 : vis.visit (*this);
4336 : 0 : }
4337 : :
4338 : : void
4339 : 0 : MetaItemPathLit::accept_vis (ASTVisitor &vis)
4340 : : {
4341 : 0 : vis.visit (*this);
4342 : 0 : }
4343 : :
4344 : : void
4345 : 9139 : BorrowExpr::accept_vis (ASTVisitor &vis)
4346 : : {
4347 : 9139 : vis.visit (*this);
4348 : 9139 : }
4349 : :
4350 : : void
4351 : 10621 : DereferenceExpr::accept_vis (ASTVisitor &vis)
4352 : : {
4353 : 10621 : vis.visit (*this);
4354 : 10621 : }
4355 : :
4356 : : void
4357 : 0 : ErrorPropagationExpr::accept_vis (ASTVisitor &vis)
4358 : : {
4359 : 0 : vis.visit (*this);
4360 : 0 : }
4361 : :
4362 : : void
4363 : 2283 : NegationExpr::accept_vis (ASTVisitor &vis)
4364 : : {
4365 : 2283 : vis.visit (*this);
4366 : 2283 : }
4367 : :
4368 : : void
4369 : 1594067 : ArithmeticOrLogicalExpr::accept_vis (ASTVisitor &vis)
4370 : : {
4371 : 1594067 : vis.visit (*this);
4372 : 1594067 : }
4373 : :
4374 : : void
4375 : 7255 : ComparisonExpr::accept_vis (ASTVisitor &vis)
4376 : : {
4377 : 7255 : vis.visit (*this);
4378 : 7255 : }
4379 : :
4380 : : void
4381 : 3150 : LazyBooleanExpr::accept_vis (ASTVisitor &vis)
4382 : : {
4383 : 3150 : vis.visit (*this);
4384 : 3150 : }
4385 : :
4386 : : void
4387 : 35328 : TypeCastExpr::accept_vis (ASTVisitor &vis)
4388 : : {
4389 : 35328 : vis.visit (*this);
4390 : 35328 : }
4391 : :
4392 : : void
4393 : 13265 : AssignmentExpr::accept_vis (ASTVisitor &vis)
4394 : : {
4395 : 13265 : vis.visit (*this);
4396 : 13265 : }
4397 : :
4398 : : void
4399 : 1449 : CompoundAssignmentExpr::accept_vis (ASTVisitor &vis)
4400 : : {
4401 : 1449 : vis.visit (*this);
4402 : 1449 : }
4403 : :
4404 : : void
4405 : 1380 : ArrayElemsValues::accept_vis (ASTVisitor &vis)
4406 : : {
4407 : 1380 : vis.visit (*this);
4408 : 1380 : }
4409 : :
4410 : : void
4411 : 742 : ArrayElemsCopied::accept_vis (ASTVisitor &vis)
4412 : : {
4413 : 742 : vis.visit (*this);
4414 : 742 : }
4415 : :
4416 : : void
4417 : 2136 : ArrayExpr::accept_vis (ASTVisitor &vis)
4418 : : {
4419 : 2136 : vis.visit (*this);
4420 : 2136 : }
4421 : :
4422 : : void
4423 : 4067 : ArrayIndexExpr::accept_vis (ASTVisitor &vis)
4424 : : {
4425 : 4067 : vis.visit (*this);
4426 : 4067 : }
4427 : :
4428 : : void
4429 : 2601 : TupleExpr::accept_vis (ASTVisitor &vis)
4430 : : {
4431 : 2601 : vis.visit (*this);
4432 : 2601 : }
4433 : :
4434 : : void
4435 : 6410 : TupleIndexExpr::accept_vis (ASTVisitor &vis)
4436 : : {
4437 : 6410 : vis.visit (*this);
4438 : 6410 : }
4439 : :
4440 : : void
4441 : 368 : StructExprStruct::accept_vis (ASTVisitor &vis)
4442 : : {
4443 : 368 : vis.visit (*this);
4444 : 368 : }
4445 : :
4446 : : void
4447 : 1380 : StructExprFieldIdentifier::accept_vis (ASTVisitor &vis)
4448 : : {
4449 : 1380 : vis.visit (*this);
4450 : 1380 : }
4451 : :
4452 : : void
4453 : 9342 : StructExprFieldIdentifierValue::accept_vis (ASTVisitor &vis)
4454 : : {
4455 : 9342 : vis.visit (*this);
4456 : 9342 : }
4457 : :
4458 : : void
4459 : 308 : StructExprFieldIndexValue::accept_vis (ASTVisitor &vis)
4460 : : {
4461 : 308 : vis.visit (*this);
4462 : 308 : }
4463 : :
4464 : : void
4465 : 5878 : StructExprStructFields::accept_vis (ASTVisitor &vis)
4466 : : {
4467 : 5878 : vis.visit (*this);
4468 : 5878 : }
4469 : :
4470 : : void
4471 : 0 : StructExprStructBase::accept_vis (ASTVisitor &vis)
4472 : : {
4473 : 0 : vis.visit (*this);
4474 : 0 : }
4475 : :
4476 : : void
4477 : 59564 : CallExpr::accept_vis (ASTVisitor &vis)
4478 : : {
4479 : 59564 : vis.visit (*this);
4480 : 59564 : }
4481 : :
4482 : : void
4483 : 9057 : MethodCallExpr::accept_vis (ASTVisitor &vis)
4484 : : {
4485 : 9057 : vis.visit (*this);
4486 : 9057 : }
4487 : :
4488 : : void
4489 : 11063 : FieldAccessExpr::accept_vis (ASTVisitor &vis)
4490 : : {
4491 : 11063 : vis.visit (*this);
4492 : 11063 : }
4493 : :
4494 : : void
4495 : 185 : ClosureExprInner::accept_vis (ASTVisitor &vis)
4496 : : {
4497 : 185 : vis.visit (*this);
4498 : 185 : }
4499 : :
4500 : : void
4501 : 88643 : BlockExpr::accept_vis (ASTVisitor &vis)
4502 : : {
4503 : 88643 : vis.visit (*this);
4504 : 88642 : }
4505 : :
4506 : : void
4507 : 211 : ClosureExprInnerTyped::accept_vis (ASTVisitor &vis)
4508 : : {
4509 : 211 : vis.visit (*this);
4510 : 211 : }
4511 : :
4512 : : void
4513 : 113 : ContinueExpr::accept_vis (ASTVisitor &vis)
4514 : : {
4515 : 113 : vis.visit (*this);
4516 : 113 : }
4517 : :
4518 : : void
4519 : 661 : BreakExpr::accept_vis (ASTVisitor &vis)
4520 : : {
4521 : 661 : vis.visit (*this);
4522 : 660 : }
4523 : :
4524 : : void
4525 : 422 : RangeFromToExpr::accept_vis (ASTVisitor &vis)
4526 : : {
4527 : 422 : vis.visit (*this);
4528 : 422 : }
4529 : :
4530 : : void
4531 : 49 : RangeFromExpr::accept_vis (ASTVisitor &vis)
4532 : : {
4533 : 49 : vis.visit (*this);
4534 : 49 : }
4535 : :
4536 : : void
4537 : 49 : RangeToExpr::accept_vis (ASTVisitor &vis)
4538 : : {
4539 : 49 : vis.visit (*this);
4540 : 49 : }
4541 : :
4542 : : void
4543 : 0 : RangeFullExpr::accept_vis (ASTVisitor &vis)
4544 : : {
4545 : 0 : vis.visit (*this);
4546 : 0 : }
4547 : :
4548 : : void
4549 : 49 : RangeFromToInclExpr::accept_vis (ASTVisitor &vis)
4550 : : {
4551 : 49 : vis.visit (*this);
4552 : 49 : }
4553 : :
4554 : : void
4555 : 0 : RangeToInclExpr::accept_vis (ASTVisitor &vis)
4556 : : {
4557 : 0 : vis.visit (*this);
4558 : 0 : }
4559 : :
4560 : : void
4561 : 2449 : ReturnExpr::accept_vis (ASTVisitor &vis)
4562 : : {
4563 : 2449 : vis.visit (*this);
4564 : 2449 : }
4565 : :
4566 : : void
4567 : 20245 : UnsafeBlockExpr::accept_vis (ASTVisitor &vis)
4568 : : {
4569 : 20245 : vis.visit (*this);
4570 : 20245 : }
4571 : :
4572 : : void
4573 : 804 : LoopExpr::accept_vis (ASTVisitor &vis)
4574 : : {
4575 : 804 : vis.visit (*this);
4576 : 804 : }
4577 : :
4578 : : void
4579 : 355 : WhileLoopExpr::accept_vis (ASTVisitor &vis)
4580 : : {
4581 : 355 : vis.visit (*this);
4582 : 355 : }
4583 : :
4584 : : void
4585 : 0 : WhileLetLoopExpr::accept_vis (ASTVisitor &vis)
4586 : : {
4587 : 0 : vis.visit (*this);
4588 : 0 : }
4589 : :
4590 : : void
4591 : 0 : ForLoopExpr::accept_vis (ASTVisitor &vis)
4592 : : {
4593 : 0 : vis.visit (*this);
4594 : 0 : }
4595 : :
4596 : : void
4597 : 2883 : IfExpr::accept_vis (ASTVisitor &vis)
4598 : : {
4599 : 2883 : vis.visit (*this);
4600 : 2883 : }
4601 : :
4602 : : void
4603 : 3276 : IfExprConseqElse::accept_vis (ASTVisitor &vis)
4604 : : {
4605 : 3276 : vis.visit (*this);
4606 : 3276 : }
4607 : :
4608 : : void
4609 : 6 : IfLetExpr::accept_vis (ASTVisitor &vis)
4610 : : {
4611 : 6 : vis.visit (*this);
4612 : 6 : }
4613 : :
4614 : : void
4615 : 16 : IfLetExprConseqElse::accept_vis (ASTVisitor &vis)
4616 : : {
4617 : 16 : vis.visit (*this);
4618 : 16 : }
4619 : :
4620 : : void
4621 : 1758 : MatchExpr::accept_vis (ASTVisitor &vis)
4622 : : {
4623 : 1758 : vis.visit (*this);
4624 : 1758 : }
4625 : :
4626 : : void
4627 : 0 : AwaitExpr::accept_vis (ASTVisitor &vis)
4628 : : {
4629 : 0 : vis.visit (*this);
4630 : 0 : }
4631 : :
4632 : : void
4633 : 0 : AsyncBlockExpr::accept_vis (ASTVisitor &vis)
4634 : : {
4635 : 0 : vis.visit (*this);
4636 : 0 : }
4637 : :
4638 : : void
4639 : 26175 : TypeParam::accept_vis (ASTVisitor &vis)
4640 : : {
4641 : 26175 : vis.visit (*this);
4642 : 26175 : }
4643 : :
4644 : : void
4645 : 0 : LifetimeWhereClauseItem::accept_vis (ASTVisitor &vis)
4646 : : {
4647 : 0 : vis.visit (*this);
4648 : 0 : }
4649 : :
4650 : : void
4651 : 613 : TypeBoundWhereClauseItem::accept_vis (ASTVisitor &vis)
4652 : : {
4653 : 613 : vis.visit (*this);
4654 : 613 : }
4655 : :
4656 : : void
4657 : 5346 : Module::accept_vis (ASTVisitor &vis)
4658 : : {
4659 : 5346 : vis.visit (*this);
4660 : 5346 : }
4661 : :
4662 : : void
4663 : 167 : ExternCrate::accept_vis (ASTVisitor &vis)
4664 : : {
4665 : 167 : vis.visit (*this);
4666 : 167 : }
4667 : :
4668 : : void
4669 : 5 : UseTreeGlob::accept_vis (ASTVisitor &vis)
4670 : : {
4671 : 5 : vis.visit (*this);
4672 : 5 : }
4673 : :
4674 : : void
4675 : 24 : UseTreeList::accept_vis (ASTVisitor &vis)
4676 : : {
4677 : 24 : vis.visit (*this);
4678 : 24 : }
4679 : :
4680 : : void
4681 : 40 : UseTreeRebind::accept_vis (ASTVisitor &vis)
4682 : : {
4683 : 40 : vis.visit (*this);
4684 : 40 : }
4685 : :
4686 : : void
4687 : 1002 : UseDeclaration::accept_vis (ASTVisitor &vis)
4688 : : {
4689 : 1002 : vis.visit (*this);
4690 : 1002 : }
4691 : :
4692 : : void
4693 : 113591 : Function::accept_vis (ASTVisitor &vis)
4694 : : {
4695 : 113591 : vis.visit (*this);
4696 : 113590 : }
4697 : :
4698 : : void
4699 : 8620 : TypeAlias::accept_vis (ASTVisitor &vis)
4700 : : {
4701 : 8620 : vis.visit (*this);
4702 : 8620 : }
4703 : :
4704 : : void
4705 : 9263 : StructStruct::accept_vis (ASTVisitor &vis)
4706 : : {
4707 : 9263 : vis.visit (*this);
4708 : 9263 : }
4709 : :
4710 : : void
4711 : 7145 : TupleStruct::accept_vis (ASTVisitor &vis)
4712 : : {
4713 : 7145 : vis.visit (*this);
4714 : 7145 : }
4715 : :
4716 : : void
4717 : 1760 : EnumItem::accept_vis (ASTVisitor &vis)
4718 : : {
4719 : 1760 : vis.visit (*this);
4720 : 1760 : }
4721 : :
4722 : : void
4723 : 1765 : EnumItemTuple::accept_vis (ASTVisitor &vis)
4724 : : {
4725 : 1765 : vis.visit (*this);
4726 : 1765 : }
4727 : :
4728 : : void
4729 : 403 : EnumItemStruct::accept_vis (ASTVisitor &vis)
4730 : : {
4731 : 403 : vis.visit (*this);
4732 : 403 : }
4733 : :
4734 : : void
4735 : 82 : EnumItemDiscriminant::accept_vis (ASTVisitor &vis)
4736 : : {
4737 : 82 : vis.visit (*this);
4738 : 82 : }
4739 : :
4740 : : void
4741 : 1780 : Enum::accept_vis (ASTVisitor &vis)
4742 : : {
4743 : 1780 : vis.visit (*this);
4744 : 1780 : }
4745 : :
4746 : : void
4747 : 860 : Union::accept_vis (ASTVisitor &vis)
4748 : : {
4749 : 860 : vis.visit (*this);
4750 : 860 : }
4751 : :
4752 : : void
4753 : 4273 : ConstantItem::accept_vis (ASTVisitor &vis)
4754 : : {
4755 : 4273 : vis.visit (*this);
4756 : 4273 : }
4757 : :
4758 : : void
4759 : 387 : StaticItem::accept_vis (ASTVisitor &vis)
4760 : : {
4761 : 387 : vis.visit (*this);
4762 : 387 : }
4763 : :
4764 : : void
4765 : 317 : TraitItemConst::accept_vis (ASTVisitor &vis)
4766 : : {
4767 : 317 : vis.visit (*this);
4768 : 317 : }
4769 : :
4770 : : void
4771 : 4564 : TraitItemType::accept_vis (ASTVisitor &vis)
4772 : : {
4773 : 4564 : vis.visit (*this);
4774 : 4564 : }
4775 : :
4776 : : void
4777 : 21463 : Trait::accept_vis (ASTVisitor &vis)
4778 : : {
4779 : 21463 : vis.visit (*this);
4780 : 21463 : }
4781 : :
4782 : : void
4783 : 6551 : InherentImpl::accept_vis (ASTVisitor &vis)
4784 : : {
4785 : 6551 : vis.visit (*this);
4786 : 6551 : }
4787 : :
4788 : : void
4789 : 21278 : TraitImpl::accept_vis (ASTVisitor &vis)
4790 : : {
4791 : 21278 : vis.visit (*this);
4792 : 21278 : }
4793 : :
4794 : : void
4795 : 6 : ExternalTypeItem::accept_vis (ASTVisitor &vis)
4796 : : {
4797 : 6 : vis.visit (*this);
4798 : 6 : }
4799 : :
4800 : : void
4801 : 8 : ExternalStaticItem::accept_vis (ASTVisitor &vis)
4802 : : {
4803 : 8 : vis.visit (*this);
4804 : 8 : }
4805 : :
4806 : : void
4807 : 10478 : ExternBlock::accept_vis (ASTVisitor &vis)
4808 : : {
4809 : 10478 : vis.visit (*this);
4810 : 10478 : }
4811 : :
4812 : : void
4813 : 571 : MacroMatchFragment::accept_vis (ASTVisitor &vis)
4814 : : {
4815 : 571 : vis.visit (*this);
4816 : 571 : }
4817 : :
4818 : : void
4819 : 252 : MacroMatchRepetition::accept_vis (ASTVisitor &vis)
4820 : : {
4821 : 252 : vis.visit (*this);
4822 : 252 : }
4823 : :
4824 : : void
4825 : 45 : MacroMatcher::accept_vis (ASTVisitor &vis)
4826 : : {
4827 : 45 : vis.visit (*this);
4828 : 45 : }
4829 : :
4830 : : void
4831 : 11605 : MacroRulesDefinition::accept_vis (ASTVisitor &vis)
4832 : : {
4833 : 11605 : vis.visit (*this);
4834 : 11605 : }
4835 : :
4836 : : void
4837 : 8330 : MacroInvocation::accept_vis (ASTVisitor &vis)
4838 : : {
4839 : 8330 : vis.visit (*this);
4840 : 8330 : }
4841 : :
4842 : : void
4843 : 619 : EmptyStmt::accept_vis (ASTVisitor &vis)
4844 : : {
4845 : 619 : vis.visit (*this);
4846 : 619 : }
4847 : :
4848 : : void
4849 : 91270 : LetStmt::accept_vis (ASTVisitor &vis)
4850 : : {
4851 : 91270 : vis.visit (*this);
4852 : 91270 : }
4853 : :
4854 : : void
4855 : 55166 : ExprStmt::accept_vis (ASTVisitor &vis)
4856 : : {
4857 : 55166 : vis.visit (*this);
4858 : 55165 : }
4859 : :
4860 : : void
4861 : 3751 : TraitBound::accept_vis (ASTVisitor &vis)
4862 : : {
4863 : 3751 : vis.visit (*this);
4864 : 3751 : }
4865 : :
4866 : : void
4867 : 0 : ImplTraitType::accept_vis (ASTVisitor &vis)
4868 : : {
4869 : 0 : vis.visit (*this);
4870 : 0 : }
4871 : :
4872 : : void
4873 : 42 : TraitObjectType::accept_vis (ASTVisitor &vis)
4874 : : {
4875 : 42 : vis.visit (*this);
4876 : 42 : }
4877 : :
4878 : : void
4879 : 0 : ParenthesisedType::accept_vis (ASTVisitor &vis)
4880 : : {
4881 : 0 : vis.visit (*this);
4882 : 0 : }
4883 : :
4884 : : void
4885 : 0 : ImplTraitTypeOneBound::accept_vis (ASTVisitor &vis)
4886 : : {
4887 : 0 : vis.visit (*this);
4888 : 0 : }
4889 : :
4890 : : void
4891 : 654 : TraitObjectTypeOneBound::accept_vis (ASTVisitor &vis)
4892 : : {
4893 : 654 : vis.visit (*this);
4894 : 654 : }
4895 : :
4896 : : void
4897 : 1857 : TupleType::accept_vis (ASTVisitor &vis)
4898 : : {
4899 : 1857 : vis.visit (*this);
4900 : 1857 : }
4901 : :
4902 : : void
4903 : 211 : NeverType::accept_vis (ASTVisitor &vis)
4904 : : {
4905 : 211 : vis.visit (*this);
4906 : 211 : }
4907 : :
4908 : : void
4909 : 43968 : RawPointerType::accept_vis (ASTVisitor &vis)
4910 : : {
4911 : 43968 : vis.visit (*this);
4912 : 43968 : }
4913 : :
4914 : : void
4915 : 15164 : ReferenceType::accept_vis (ASTVisitor &vis)
4916 : : {
4917 : 15164 : vis.visit (*this);
4918 : 15164 : }
4919 : :
4920 : : void
4921 : 3504 : ArrayType::accept_vis (ASTVisitor &vis)
4922 : : {
4923 : 3504 : vis.visit (*this);
4924 : 3504 : }
4925 : :
4926 : : void
4927 : 4866 : SliceType::accept_vis (ASTVisitor &vis)
4928 : : {
4929 : 4866 : vis.visit (*this);
4930 : 4866 : }
4931 : :
4932 : : void
4933 : 987 : InferredType::accept_vis (ASTVisitor &vis)
4934 : : {
4935 : 987 : vis.visit (*this);
4936 : 987 : }
4937 : :
4938 : : void
4939 : 264 : BareFunctionType::accept_vis (ASTVisitor &vis)
4940 : : {
4941 : 264 : vis.visit (*this);
4942 : 264 : }
4943 : :
4944 : : void
4945 : 0 : MetaItemSeq::accept_vis (ASTVisitor &vis)
4946 : : {
4947 : 0 : vis.visit (*this);
4948 : 0 : }
4949 : :
4950 : : void
4951 : 0 : MetaItemPath::accept_vis (ASTVisitor &vis)
4952 : : {
4953 : 0 : vis.visit (*this);
4954 : 0 : }
4955 : :
4956 : : void
4957 : 0 : MetaListPaths::accept_vis (ASTVisitor &vis)
4958 : : {
4959 : 0 : vis.visit (*this);
4960 : 0 : }
4961 : :
4962 : : void
4963 : 1 : MetaNameValueStr::accept_vis (ASTVisitor &vis)
4964 : : {
4965 : 1 : vis.visit (*this);
4966 : 1 : }
4967 : :
4968 : : void
4969 : 0 : MetaListNameValueStr::accept_vis (ASTVisitor &vis)
4970 : : {
4971 : 0 : vis.visit (*this);
4972 : 0 : }
4973 : :
4974 : : void
4975 : 0 : AttrInputMetaItemContainer::accept_vis (ASTVisitor &vis)
4976 : : {
4977 : 0 : vis.visit (*this);
4978 : 0 : }
4979 : :
4980 : : void
4981 : 0 : MetaWord::accept_vis (ASTVisitor &vis)
4982 : : {
4983 : 0 : vis.visit (*this);
4984 : 0 : }
4985 : :
4986 : : void
4987 : 0 : FormatArgs::accept_vis (ASTVisitor &vis)
4988 : : {
4989 : 0 : vis.visit (*this);
4990 : 0 : }
4991 : :
4992 : : std::string
4993 : 0 : FormatArgs::as_string () const
4994 : : {
4995 : : // FIXME(Arthur): Improve
4996 : 0 : return "FormatArgs";
4997 : : }
4998 : :
4999 : : location_t
5000 : 1 : FormatArgs::get_locus () const
5001 : : {
5002 : 1 : return loc;
5003 : : }
5004 : :
5005 : : bool
5006 : 0 : FormatArgs::is_expr_without_block () const
5007 : : {
5008 : 0 : return false;
5009 : : }
5010 : :
5011 : : void
5012 : 0 : FormatArgs::mark_for_strip ()
5013 : : {
5014 : 0 : marked_for_strip = true;
5015 : 0 : }
5016 : :
5017 : : bool
5018 : 0 : FormatArgs::is_marked_for_strip () const
5019 : : {
5020 : 0 : return marked_for_strip;
5021 : : }
5022 : :
5023 : : std::vector<Attribute> &
5024 : 0 : FormatArgs::get_outer_attrs ()
5025 : : {
5026 : 0 : rust_unreachable ();
5027 : : }
5028 : :
5029 : 0 : void FormatArgs::set_outer_attrs (std::vector<Attribute>)
5030 : : {
5031 : 0 : rust_unreachable ();
5032 : : }
5033 : :
5034 : : Expr *
5035 : 0 : FormatArgs::clone_expr_impl () const
5036 : : {
5037 : 0 : std::cerr << "[ARTHUR] cloning FormatArgs! " << std::endl;
5038 : :
5039 : 0 : return new FormatArgs (*this);
5040 : : }
5041 : :
5042 : : } // namespace AST
5043 : :
5044 : : std::ostream &
5045 : 0 : operator<< (std::ostream &os, Identifier const &i)
5046 : : {
5047 : 0 : return os << i.as_string ();
5048 : : }
5049 : :
5050 : : } // namespace Rust
|