@@ -3954,14 +3954,14 @@ public void visitUnary(JCUnary tree) {
3954
3954
: chk .checkNonVoid (tree .arg .pos (), attribExpr (tree .arg , env ));
3955
3955
3956
3956
// Find operator.
3957
- Symbol operator = tree .operator = operators .resolveUnary (tree , tree .getTag (), argtype );
3957
+ OperatorSymbol operator = tree .operator = operators .resolveUnary (tree , tree .getTag (), argtype );
3958
3958
Type owntype = types .createErrorType (tree .type );
3959
3959
if (operator != operators .noOpSymbol &&
3960
3960
!argtype .isErroneous ()) {
3961
3961
owntype = (tree .getTag ().isIncOrDecUnaryOp ())
3962
3962
? tree .arg .type
3963
3963
: operator .type .getReturnType ();
3964
- int opc = (( OperatorSymbol ) operator ) .opcode ;
3964
+ int opc = operator .opcode ;
3965
3965
3966
3966
// If the argument is constant, fold it.
3967
3967
if (argtype .constValue () != null ) {
@@ -4008,13 +4008,13 @@ public void visitBinary(JCBinary tree) {
4008
4008
matchBindings = matchBindingsComputer .binary (tree , lhsBindings , matchBindings );
4009
4009
4010
4010
// Find operator.
4011
- Symbol operator = tree .operator = operators .resolveBinary (tree , tree .getTag (), left , right );
4011
+ OperatorSymbol operator = tree .operator = operators .resolveBinary (tree , tree .getTag (), left , right );
4012
4012
Type owntype = types .createErrorType (tree .type );
4013
4013
if (operator != operators .noOpSymbol &&
4014
4014
!left .isErroneous () &&
4015
4015
!right .isErroneous ()) {
4016
4016
owntype = operator .type .getReturnType ();
4017
- int opc = (( OperatorSymbol ) operator ) .opcode ;
4017
+ int opc = operator .opcode ;
4018
4018
// If both arguments are constants, fold them.
4019
4019
if (left .constValue () != null && right .constValue () != null ) {
4020
4020
Type ctype = cfolder .fold2 (opc , left , right );
@@ -5498,11 +5498,11 @@ private void attribClassBody(Env<AttrContext> env, ClassSymbol c) {
5498
5498
c .owner .kind != PCK &&
5499
5499
((c .flags () & STATIC ) == 0 || c .name == names .empty ) &&
5500
5500
(TreeInfo .flags (l .head ) & (STATIC | INTERFACE )) != 0 ) {
5501
- Symbol sym = null ;
5501
+ VarSymbol sym = null ;
5502
5502
if (l .head .hasTag (VARDEF )) sym = ((JCVariableDecl ) l .head ).sym ;
5503
5503
if (sym == null ||
5504
5504
sym .kind != VAR ||
5505
- (( VarSymbol ) sym ) .getConstValue () == null )
5505
+ sym .getConstValue () == null )
5506
5506
log .error (l .head .pos (), Errors .IclsCantHaveStaticDecl (c ));
5507
5507
}
5508
5508
}
0 commit comments