From Jiger:
================
1. When I try to get type for expression like
(String[])tokens.toArray(new String[0]); it wrongly
identifies tokens.toArray as 1 single
expression/astname and
thus a custom rule fires the error like
Unnecessary Casting. Variable tokens.toArray is already of
type String.
================
Logged In: YES
user_id=5159
The odd thing is that something like:
this.y.toString
gets parsed into a series of PrimaryPrefix/Suffixes:
PrimaryExpression
PrimaryPrefix:this
PrimarySuffix:y
PrimarySuffix:toString
I have an elegant fix for this, but the margin is too small
to contain it...
Tom
PrimarySuffix