
Dot completion, identifier ending with digits
Hi all,
Don't know whether this is small bug or feature.
r2179 breaks identifiers ending with digits.
If I comment the else block all is good again.
Needs a as3/haXe switch maybe?
I know.. I know... such identifiers are poor form... that's why I ask if it is a feature

,
but hey... we always going to get swcs from our designers containing such things...
Example for clarity,
Code:
class Thing {
var prop:int;
var prop9:int;
function method():void {
var loc_3:int;
prop.| // ok
prop9.| // no completion
loc_3.| // no completion
}
}