blob: b49426a0fabd1523b557206fb5fdafb04f85d6ad [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 Bitwise expressions invoke the bitwise operators on objects.
* bitwiseOrExpression:
* bitwiseXorExpression ('|' bitwiseXorExpression)* |
* super ('|' bitwiseXorExpression)+
* ;
* bitwiseXorExpression:
* bitwiseAndExpression ('^' bitwiseAndExpression)* |
* super ('^' bitwiseAndExpression)+
* ;
* bitwiseAndExpression:
* shiftExpression ('&' shiftExpression)* |
* super ('&' shiftExpression)+
* ;
* bitwiseOperator:
* '&' |
* '^' |
* '|'
* ;
* A bitwise expression is either an shift expression, or an invocation
* of a bitwise operator on either super or an expression e1, with argument e2.
* @description Checks that various bitwise 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();
operator|(var val) {return this;}
operator&(var val) {return this;}
operator^(var val) {return this;}
}
class A extends S {
method() {}
var id;
test() {
//super
super | this;
try {super ^ 1 | 3; } catch(e) {}
try {super & new Object() ^ true | 1; } catch(e) {}
//literals
try {1 & "1";} catch(e) {} /// static type warnings galore
try {false | null;} catch(e) {}
try {[1, 2, 3, 4] ^ {"1": 2, "3": 4};} catch(e) {}
//function expressions
try {(){} | ()=>{};} catch(e) {}
try {() {return null;} & (int x) => 7;} catch(e) {} // issue 1189
try {() => ({}) ^ () {};} catch(e) {}
//constants and instance creation
try {const [] | [];} catch(e) {}
try {const {"a": 1} & {"a": 1};} catch(e) {}
try {const S() ^ new A();} catch(e) {}
//invocation
try {id ^ topLevelFunction();} catch(e) {}
try {method() & topLevelFunction();} catch(e) {}
try {method() | id;} catch(e) {}
//shift
try {true * false;} catch(e) {}
try {1 + 3 & 0;} catch(e) {}
//relational expression is a higher grammar rule since spec 0.61
//so these are not bitwise exprs, but relational exprs containing bitwise
try {1 ^ 2 < true | false;} catch(e) {}
try {true & false <= id ^ 7;} catch(e) {}
//shift expressions
try {id << method() & {}() >> []();} catch(e) {}
try {1 << 2 ^ null >> null;} catch(e) {}
// bitwise expressions
1 | -1 | 1 | -1 | 1;
1 & -1 & 1 & -1 & 1;
1 ^ -1 ^ 1 ^ -1 ^ 1;
1 ^ -1 | 1 & -1 & 1 | -1 ^ 1 | -1 ^ 1;
//additive expressions
try { 1 + 2 ^ 2;} catch(e) {}
try { 0 - 0 | null + null;} catch(e) {}
try { [] + {} & 0;} catch(e) {}
//multiplicative expressions
try {true * false ^ id.id / []();} catch(e) {}
try {this[1] % null(1) & topLevelFunction()[0]++ ~/ {}()[0];} catch(e) {}
try {0 ~/ 1 | 1 - -1;} catch(e) {}
//unary expressions
try {-this & ~this;} catch(e) {}
try {--id | id++;} catch(e) {}
try {~-id ^ !!false;} catch(e) {}
//identifier
try { id ^ id | id & id;} catch(e) {}
}
}
main() {
A a = new A();
a.test();
}