mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-25 07:00:13 +01:00
- Finishes remaining "todo" parse nodes. - Improving error recovery for invalid designators and structs, so that the parse tree still looks similar to a valid parse tree. - Call expressions now have the thing being called as a child (of the start) instead of a sibling. - Use of Start is replacing use of End in several parse nodes, like structs and call expressions. - Adjusting documentation of parse node structures in an attempt to make it more consistent and understandable. - The current state for interfaces and if/else is mostly being documented, not altered.
55 lines
1.8 KiB
C++
55 lines
1.8 KiB
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
|
|
|
|
#include "toolchain/parser/parse_node_kind.h"
|
|
|
|
#include "common/check.h"
|
|
#include "llvm/ADT/StringRef.h"
|
|
|
|
namespace Carbon {
|
|
|
|
auto ParseNodeKind::name() const -> llvm::StringRef {
|
|
static constexpr llvm::StringLiteral Names[] = {
|
|
#define CARBON_PARSE_NODE_KIND(Name) #Name,
|
|
#include "toolchain/parser/parse_node_kind.def"
|
|
};
|
|
return Names[static_cast<int>(kind_)];
|
|
}
|
|
|
|
auto ParseNodeKind::has_bracket() const -> bool {
|
|
static constexpr bool HasBracket[] = {
|
|
#define CARBON_PARSE_NODE_KIND_BRACKET(...) true,
|
|
#define CARBON_PARSE_NODE_KIND_CHILD_COUNT(...) false,
|
|
#include "toolchain/parser/parse_node_kind.def"
|
|
};
|
|
return HasBracket[static_cast<int>(kind_)];
|
|
}
|
|
|
|
auto ParseNodeKind::bracket() const -> ParseNodeKind {
|
|
// Nodes are never self-bracketed, so we use that for nodes that instead set
|
|
// child_count.
|
|
static constexpr ParseNodeKind Bracket[] = {
|
|
#define CARBON_PARSE_NODE_KIND_BRACKET(Name, BracketName) \
|
|
ParseNodeKind::BracketName(),
|
|
#define CARBON_PARSE_NODE_KIND_CHILD_COUNT(Name, ...) ParseNodeKind::Name(),
|
|
#include "toolchain/parser/parse_node_kind.def"
|
|
};
|
|
auto bracket = Bracket[static_cast<int>(kind_)];
|
|
CARBON_CHECK(bracket != kind_) << *this;
|
|
return bracket;
|
|
}
|
|
|
|
auto ParseNodeKind::child_count() const -> int32_t {
|
|
static constexpr int32_t ChildCount[] = {
|
|
#define CARBON_PARSE_NODE_KIND_BRACKET(...) -1,
|
|
#define CARBON_PARSE_NODE_KIND_CHILD_COUNT(Name, Size) Size,
|
|
#include "toolchain/parser/parse_node_kind.def"
|
|
};
|
|
auto child_count = ChildCount[static_cast<int>(kind_)];
|
|
CARBON_CHECK(child_count >= 0) << *this;
|
|
return child_count;
|
|
}
|
|
|
|
} // namespace Carbon
|