mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
Thought this might be interesting for you to allow more continuous
stream use. Also eliminates the need for `DumpNoNewline`.
```
expr Dump(context, complete_type_id)
(std::string) $0 = "type(inst1553): <builtin i32>; {kind: IntType, arg0: signed, arg1: inst1508, type: type(TypeType)}"
complete_type_id.Dump()
(std::string) $1 = "type(inst1553)"
expr Dump(context, specific_id)
(std::string) $2 = "specific166: {generic: generic0, args: inst_block772}"
expr Dump(context, query_self_const_id)
(std::string) $3 = "concrete_constant(inst1510): {kind: ClassType, arg0: class0, arg1: specific166, type: type(TypeType)}"
expr Dump(context, MakeFacetTypeId(arg))
(std::string) $4 = "facet_type22: {impls interface: interface10}
- interface10: {name: name26, parent_scope: name_scope0} `BitAnd`
complete: complete_facet_type22
- interface10: {name: name26, parent_scope: name_scope0} `BitAnd` (to impl)"
```
---------
Co-authored-by: Dana Jansens <danakj@orodu.net>
37 lines
923 B
C++
37 lines
923 B
C++
// Part of the Carbon Language project, under the Apache License v2.0 with LLVM
|
|
// Exceptions. See /LICENSE for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
#ifndef NDEBUG
|
|
|
|
#include "toolchain/parse/dump.h"
|
|
|
|
#include "common/raw_string_ostream.h"
|
|
#include "toolchain/lex/dump.h"
|
|
|
|
namespace Carbon::Parse {
|
|
|
|
LLVM_DUMP_METHOD auto Dump(const Tree& tree, Lex::TokenIndex token)
|
|
-> std::string {
|
|
return Lex::Dump(tree.tokens(), token);
|
|
}
|
|
|
|
LLVM_DUMP_METHOD auto Dump(const Tree& tree, NodeId node_id) -> std::string {
|
|
RawStringOstream out;
|
|
if (!node_id.has_value()) {
|
|
out << "NodeId(<none>)";
|
|
return out.TakeStr();
|
|
}
|
|
|
|
auto kind = tree.node_kind(node_id);
|
|
auto token = tree.node_token(node_id);
|
|
|
|
out << "NodeId(kind: " << kind
|
|
<< ", token: " << Lex::Dump(tree.tokens(), token) << ")";
|
|
return out.TakeStr();
|
|
}
|
|
|
|
} // namespace Carbon::Parse
|
|
|
|
#endif // NDEBUG
|