Is there any way to have AS3 recognize c-style variable declaration syntax, like
int foo;
I tend to write code like that without even thinking about it, which means that when I’m done with a function I’ll go back and realize that I have to run the script through %s/int (.*);/var \1:int;/ again.