I'm not sure if this is bug or just an unintended side effect, but given the following incorrect code in a header file:
class test { void bad() };
Notice the missing semicolon at the end of bad.
Highlight bad and select "Create Implementation". Normally what you'd expect is the definition for "bad" in the source file, which is what you get if the semicolon is properly there. Without the semicolon, instead you get this:
class test { void bad() test::bad() } {
}
Clearly VAX is confused by the code above. Now since the class/function declaration is incorrect, I don't know if this is really a problem or not, but I thought you should know.
Our parser does a good job of recovering from invalid code, since you often want VA to work on code that you are still writing. Unfortunately this is a good example of a code error that tends to trip us up.
In a way it is useful, when Refactoring starts doing really strange things, it is often a sign you have a missing semi colon.