72b997b522
Changes since the version that was reverted are in patch set 2: 1. Fix one remaining dart2js test that relied on the old operator== behavior. 2. Fix type intersection operation to actually take null into account. Because of bounded types they should always use canBeNull. R=floitsch@google.com BUG= TEST= Review URL: https://chromiumcodereview.appspot.com//10692087 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@9396 260f80e4-7a28-3924-810f-c04153c831b5
54 lines
1019 B
Dart
54 lines
1019 B
Dart
// Copyright (c) 2012, 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.
|
|
|
|
class A {
|
|
operator ==(other) => 1;
|
|
operator <(other) => null;
|
|
operator <=(other) => 499;
|
|
operator >(other) => "foo";
|
|
operator >=(other) => 42;
|
|
}
|
|
|
|
// This triggered a bug in Dart2Js: equality operator was always boolified.
|
|
equals(a) {
|
|
try {
|
|
Expect.equals(1, a == a);
|
|
} catch(TypeError e) {
|
|
// In checked mode the test doesn't do anything.
|
|
}
|
|
}
|
|
|
|
less(a) {
|
|
try {
|
|
Expect.equals(null, a < a);
|
|
} catch(TypeError e) {}
|
|
}
|
|
|
|
lessEqual(a) {
|
|
try {
|
|
Expect.equals(499, a <= a);
|
|
} catch(TypeError e) {}
|
|
}
|
|
|
|
greater(a) {
|
|
try {
|
|
Expect.equals("foo", a > a);
|
|
} catch(TypeError e) {}
|
|
}
|
|
|
|
greaterEqual(a) {
|
|
try {
|
|
Expect.equals(42, a >= a);
|
|
} catch(TypeError e) {}
|
|
}
|
|
|
|
main() {
|
|
var a = new A();
|
|
equals(a);
|
|
less(a);
|
|
lessEqual(a);
|
|
greater(a);
|
|
greaterEqual(a);
|
|
}
|