blob: 56e8c4d602a47bae0e2acc3fe09539ebcbce6e87 [file] [log] [blame]
enum E { a, b, c }
class PrimitiveEquals {
final int field;
const PrimitiveEquals(this.field);
}
class NonPrimitiveEquals {
final int field;
const NonPrimitiveEquals(this.field);
int get hashCode => field.hashCode;
bool operator ==(Object other) {}
}
switchStatement(o) {}
switchStatementWithLabel(o) {}
switchStatementWithContinue(o) {}
switchStatementWithContinueNested(o1, o2) {}
switchStatementEnum(E o) {}
switchStatementEnumWithGuard(E o) {}
switchStatementEnumWithLabel(E o) {}
switchStatementEnumWithContinue(E o) {}
switchStatementPrimitiveEquals(o) {}
switchStatementNonPrimitiveEquals(o) {}
switchExpression(o) {}
switchExpressionEnum(E o) {}
switchExpressionEnumWithGuard(E o) {}
switchExpressionPrimitiveEquals(o) {}
switchExpressionNonPrimitiveEquals(o) {}
switchStatementSymbol(Symbol s) {}
switchExpressionSymbol(Symbol s) {}