blob: ecf4d0c14a40dc042d9fe12ad9ac4c8238910e89 [file] [log] [blame]
/*
* Copyright (c) 2011, 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.
*/
/**
* @assertion Equality expressions test objects for equality.
* equalityExpression:
* relationalExpression (equalityOperator relationalExpression)? |
* super equalityOperator relationalExpression
* ;
* equalityOperator:
* '==' |
* '!='
* ;
* An equality expression is either a relational expression, or an invocation of
* a equality operator on either super or an expression e1, with argument e2.
* @description Checks that various equality expression which are valid according to this grammar
* don't cause compile-time errors.
* @static-warning
* @author msyabro
* @reviewer rodionov
*/
topLevelFunction() {}
class S {
const S();
}
class A extends S {
method() {}
var id;
test() {
//super - issue 1242
super == this;
super != 1;
//literals
1 == "1";
false != null;
//function expressions -- issue 1189
(){} == ()=>{};
() {return null;} == (int x) => 7;
() => [] != 1;
() {} != new Object();
//constants and instance creation
const [] == [];
new A() != new A();
//invocation
id == topLevelFunction();
method() != id;
//relational expressions
try {1 < 2 == true > false;} catch(e) {} /// static type warnings galore
try {true >= false == id > 7;} catch(e) {}
//shift expressions
try {1 >> -1 != (){};} catch(e) {}
try {1 << 2 != null >> null;} catch(e) {}
//additive expressions
try { 1 + 2 == 2;} catch(e) {}
try { 0 - 0 != null + null;} catch(e ) {}
//multiplicative expressions
try {true * false == id.id / []();} catch(e) {}
try {0 ~/ 1 != 1 - -1;} catch(e) {}
//unary expressions
try {-this == ~this;} catch(e) {}
try {~-id != !!false;} catch(e) {}
}
}
main() {
A a = new A();
a.test();
}