41bc0b4d07
opt switch related tests back to 2.19 opt map/set hashCode override tests back to 2.19 Change-Id: Ib5c44fc17de43eaf9bcad71d7a326c5fcbff02bf Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/285800 Auto-Submit: Jake Macdonald <jakemac@google.com> Reviewed-by: Bob Nystrom <rnystrom@google.com> Commit-Queue: Jake Macdonald <jakemac@google.com>
48 lines
1.5 KiB
Dart
48 lines
1.5 KiB
Dart
// Copyright (c) 2021, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
//
|
|
// @dart=2.19
|
|
|
|
import 'package:expect/expect.dart';
|
|
|
|
/// Returns its argument.
|
|
///
|
|
/// Prevents static optimizations and inlining.
|
|
@pragma('vm:never-inline')
|
|
@pragma('dart2js:noInline')
|
|
dynamic getValueNonOptimized(dynamic x) {
|
|
// DateTime.now() cannot be predicted statically, never equal to 42.
|
|
if (DateTime.now().millisecondsSinceEpoch == 42) {
|
|
return getValueNonOptimized(2);
|
|
}
|
|
return x;
|
|
}
|
|
|
|
class MyClass {
|
|
final int n;
|
|
|
|
const MyClass(this.n);
|
|
|
|
int get hashCode => super.hashCode + 1;
|
|
}
|
|
|
|
main() {
|
|
const constInstance = MyClass(1);
|
|
final nonConstInstance = MyClass(1);
|
|
|
|
const constSet = {MyClass(1)};
|
|
final nonConstSet = {constInstance};
|
|
final nonConstSet2 = {nonConstInstance};
|
|
|
|
// operator== is _not_ overridden, so instances are not equal.
|
|
Expect.notEquals(constInstance, nonConstInstance);
|
|
|
|
Expect.isTrue(constSet.contains(getValueNonOptimized(constInstance)));
|
|
Expect.isFalse(constSet.contains(getValueNonOptimized(nonConstInstance)));
|
|
Expect.isTrue(nonConstSet.contains(getValueNonOptimized(constInstance)));
|
|
Expect.isFalse(nonConstSet.contains(getValueNonOptimized(nonConstInstance)));
|
|
Expect.isFalse(nonConstSet2.contains(getValueNonOptimized(constInstance)));
|
|
Expect.isTrue(nonConstSet2.contains(getValueNonOptimized(nonConstInstance)));
|
|
}
|