7 #include <hilti/ast/type.h> 8 #include <hilti/ast/types/any.h> 19 const auto& typeValue()
const {
return child<Type>(0); }
21 bool operator==(
const Type_& other)
const {
return typeValue() == other.typeValue(); }
24 auto isEqual(
const Type& other)
const {
return node::isEqual(
this, other); }
26 auto _isResolved(ResolvedState* rstate)
const {
return type::detail::isResolved(typeValue(), rstate); }
35 bool _wildcard =
false;
const auto & children() const
Definition: node.h:470
auto _isResolved(ResolvedState *rstate) const
Definition: type.h:26
auto typeParameters() const
Definition: type.h:28
auto properties() const
Definition: type.h:32
std::map< std::string, node::detail::PropertyValue > Properties
Definition: node.h:99
auto isWildcard() const
Definition: type.h:30
auto isEqual(const Type &other) const
Definition: type.h:24