mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
This adds a distinction between Unused and SoloParseNode, rather than equating the two. This is intended to help identify nodes which are getting pushed but maybe don't need to be. Not totally done because I want to adjust declaration name handling due to a quirk with how it mixes Name with Expression, but almost done. Once that's done the type punning will be completely gone.
61 lines
2.2 KiB
C++
61 lines
2.2 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/semantics/semantics_context.h"
|
|
#include "toolchain/semantics/semantics_node.h"
|
|
|
|
namespace Carbon {
|
|
|
|
auto SemanticsHandleVariableDeclaration(SemanticsContext& context,
|
|
ParseTree::Node parse_node) -> bool {
|
|
// Handle the optional initializer.
|
|
auto expr_node_id = SemanticsNodeId::Invalid;
|
|
bool has_init =
|
|
context.parse_tree().node_kind(context.node_stack().PeekParseNode()) !=
|
|
ParseNodeKind::PatternBinding;
|
|
if (has_init) {
|
|
expr_node_id = context.node_stack().PopExpression();
|
|
context.node_stack()
|
|
.PopAndDiscardSoloParseNode<ParseNodeKind::VariableInitializer>();
|
|
}
|
|
|
|
// Get the storage and add it to name lookup.
|
|
SemanticsNodeId binding_id =
|
|
context.node_stack().Pop<ParseNodeKind::PatternBinding>();
|
|
auto binding = context.semantics_ir().GetNode(binding_id);
|
|
auto [name_id, storage_id] = binding.GetAsBindName();
|
|
context.AddNameToLookup(binding.parse_node(), name_id, storage_id);
|
|
|
|
// If there was an initializer, assign it to storage.
|
|
if (has_init) {
|
|
auto cast_value_id = context.ImplicitAsRequired(
|
|
parse_node, expr_node_id,
|
|
context.semantics_ir().GetNode(storage_id).type_id());
|
|
context.AddNode(SemanticsNode::Assign::Make(
|
|
parse_node, context.semantics_ir().GetNode(cast_value_id).type_id(),
|
|
storage_id, cast_value_id));
|
|
}
|
|
|
|
context.node_stack()
|
|
.PopAndDiscardSoloParseNode<ParseNodeKind::VariableIntroducer>();
|
|
|
|
return true;
|
|
}
|
|
|
|
auto SemanticsHandleVariableIntroducer(SemanticsContext& context,
|
|
ParseTree::Node parse_node) -> bool {
|
|
// No action, just a bracketing node.
|
|
context.node_stack().Push(parse_node);
|
|
return true;
|
|
}
|
|
|
|
auto SemanticsHandleVariableInitializer(SemanticsContext& context,
|
|
ParseTree::Node parse_node) -> bool {
|
|
// No action, just a bracketing node.
|
|
context.node_stack().Push(parse_node);
|
|
return true;
|
|
}
|
|
|
|
} // namespace Carbon
|