equalsStrict method

bool equalsStrict(
  1. ASTType other
)

Implementation

bool equalsStrict(ASTType other) {
  final self = this;
  if (self is StrictType) {
    return (self as StrictType).equals(other, strict: true);
  } else if (other is StrictType) {
    return (other as StrictType).equals(self, strict: true);
  } else {
    return self == other;
  }
}