mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 21:30:12 +01:00
My intent is to add CARBON_ bas a prefix, and this makes that easier by creating a tool for auto-fixing guards in general. string_literal is a manual fix -- it had no guard and I didn't automate that (technically I think I could, especially by enforcing the file header/footer, but it didn't feel quite worth it to me).
79 lines
2.6 KiB
C++
79 lines
2.6 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
|
|
|
|
#ifndef EXPLORER_AST_IMPL_BINDING_H_
|
|
#define EXPLORER_AST_IMPL_BINDING_H_
|
|
|
|
#include <map>
|
|
|
|
#include "common/check.h"
|
|
#include "common/ostream.h"
|
|
#include "explorer/ast/ast_node.h"
|
|
#include "explorer/ast/pattern.h"
|
|
#include "explorer/ast/value_category.h"
|
|
|
|
namespace Carbon {
|
|
|
|
class Value;
|
|
class Expression;
|
|
class ImplBinding;
|
|
|
|
// `ImplBinding` plays the role of the parameter for passing witness
|
|
// tables to a generic. However, unlike regular parameters
|
|
// (`BindingPattern`) there is no explicit syntax that corresponds to
|
|
// an `ImplBinding`, so they are not created during parsing. Instances
|
|
// of `ImplBinding` are created during type checking, when processing
|
|
// a type parameter (a `GenericBinding`), or an `is` requirement in
|
|
// a `where` clause.
|
|
class ImplBinding : public AstNode {
|
|
public:
|
|
using ImplementsCarbonValueNode = void;
|
|
|
|
ImplBinding(SourceLocation source_loc,
|
|
Nonnull<const GenericBinding*> type_var,
|
|
Nonnull<const Value*> iface)
|
|
: AstNode(AstNodeKind::ImplBinding, source_loc),
|
|
type_var_(type_var),
|
|
iface_(iface) {}
|
|
|
|
static auto classof(const AstNode* node) -> bool {
|
|
return InheritsFromImplBinding(node->kind());
|
|
}
|
|
void Print(llvm::raw_ostream& out) const override;
|
|
void PrintID(llvm::raw_ostream& out) const override;
|
|
|
|
// The binding for the type variable.
|
|
auto type_var() const -> Nonnull<const GenericBinding*> { return type_var_; }
|
|
// The interface being implemented.
|
|
auto interface() const -> Nonnull<const Value*> { return iface_; }
|
|
|
|
// Required for the the ValueNode interface
|
|
auto constant_value() const -> std::optional<Nonnull<const Value*>> {
|
|
return std::nullopt;
|
|
}
|
|
auto symbolic_identity() const -> std::optional<Nonnull<const Value*>> {
|
|
return std::nullopt;
|
|
}
|
|
|
|
// The static type of the impl. Cannot be called before typechecking.
|
|
auto static_type() const -> const Value& { return **static_type_; }
|
|
|
|
// Sets the static type of the impl. Can only be called once, during
|
|
// typechecking.
|
|
void set_static_type(Nonnull<const Value*> type) {
|
|
CARBON_CHECK(!static_type_.has_value());
|
|
static_type_ = type;
|
|
}
|
|
auto value_category() const -> ValueCategory { return ValueCategory::Let; }
|
|
|
|
private:
|
|
Nonnull<const GenericBinding*> type_var_;
|
|
Nonnull<const Value*> iface_;
|
|
std::optional<Nonnull<const Value*>> static_type_;
|
|
};
|
|
|
|
} // namespace Carbon
|
|
|
|
#endif // EXPLORER_AST_IMPL_BINDING_H_
|