Various formatting fixes and more code support

This commit is contained in:
Michael Hansen
2009-07-27 08:42:59 +00:00
parent b3e5024efd
commit 17f962e9f1
4 changed files with 388 additions and 99 deletions

View File

@@ -21,7 +21,8 @@ void ASTNodeList::removeFirst()
const char* ASTBinary::op_str() const
{
static const char* s_op_strings[] = {
"**", "*", "/", "%", "+", "-", "<<", ">>", "&", "^", "|"
"**", "*", "/", "%", "+", "-", "<<", ">>", "&", "^", "|", "//",
"<ATTR>"
};
return s_op_strings[op()];
}