8 #include <hilti/ast/type.h> 22 auto width()
const {
return _width; }
27 auto _isResolved(ResolvedState* rstate)
const {
return true; }
32 bool _wildcard =
false;
41 using detail::IntegerBase::IntegerBase;
43 bool operator==(
const SignedInteger& other)
const {
return width() == other.width(); }
46 std::vector<Node> typeParameters()
const;
49 auto isEqual(
const Type& other)
const {
return node::isEqual(
this, other); }
55 using detail::IntegerBase::IntegerBase;
57 bool operator==(
const UnsignedInteger& other)
const {
return width() == other.width(); }
60 std::vector<Node> typeParameters()
const;
63 auto isEqual(
const Type& other)
const {
return node::isEqual(
this, other); }
auto isEqual(const Type &other) const
Definition: integer.h:63
auto isWildcard() const
Definition: integer.h:25
auto isEqual(const Type &other) const
Definition: integer.h:49
auto properties() const
Definition: integer.h:29
std::map< std::string, node::detail::PropertyValue > Properties
Definition: node.h:97
auto _isResolved(ResolvedState *rstate) const
Definition: integer.h:27