IntrinsicTypeExpr constructor

IntrinsicTypeExpr({
  1. required IdentifierExpr id,
  2. bool isTop = false,
  3. bool isBottom = false,
  4. bool isLocal = true,
  5. HTSource? source,
  6. int line = 0,
  7. int column = 0,
  8. int offset = 0,
  9. int length = 0,
})

Implementation

IntrinsicTypeExpr({
  required this.id,
  this.isTop = false,
  this.isBottom = false,
  this.isLocal = true,
  super.source,
  super.line = 0,
  super.column = 0,
  super.offset = 0,
  super.length = 0,
}) : super(Semantic.intrinsicTypeExpr);