8 #include <hilti/ast/type.h> 23 auto width()
const {
return _width; }
28 auto _isResolved(ResolvedState* rstate)
const {
return true; }
33 bool _wildcard =
false;
42 using detail::IntegerBase::IntegerBase;
44 bool operator==(
const SignedInteger& other)
const {
return width() == other.width(); }
47 std::vector<Node> typeParameters()
const;
50 auto isEqual(
const Type& other)
const {
return node::isEqual(
this, other); }
56 using detail::IntegerBase::IntegerBase;
58 bool operator==(
const UnsignedInteger& other)
const {
return width() == other.width(); }
61 std::vector<Node> typeParameters()
const;
64 auto isEqual(
const Type& other)
const {
return node::isEqual(
this, other); }
auto isEqual(const Type &other) const
Definition: integer.h:64
auto isWildcard() const
Definition: integer.h:26
auto isEqual(const Type &other) const
Definition: integer.h:50
auto properties() const
Definition: integer.h:30
std::map< std::string, node::detail::PropertyValue > Properties
Definition: node.h:99
auto _isResolved(ResolvedState *rstate) const
Definition: integer.h:28