blob: 876c525a5238182ea3659218a0bb5c8bb5384b60 [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 Postfix expressions invoke the postfix operators on objects.
* postfixExpression:
* assignableExpression postfixOperator |
* primary (selector* | (‘#’ ( (identifier ‘=’?) | operator)))
* ;
* postfixOperator:
* incrementOperator
* ;
* selector:
* assignableSelector |
* arguments
* ;
* incrementOperator:
* '++' |
* '--'
* ;
* A postfix expression is either a primary expression, a function, method or
* getter invocation, or an invocation of a postfix operator on an expression e.
* @description Checks that alone super can't be used with postfixOperator.
* @compile-error
* @author msyabro
* @reviewer kaigorodov
* @reviewer rodionov
*/
class S {}
class A extends S {
test() {
try {
super--;
} catch (e) {}
}
}
main() {
A a = new A();
a.test();
}