Remove subscript binary op fragments since this had a dedicated node type

This commit is contained in:
Michael Hansen
2010-09-03 21:56:29 -07:00
parent 7ffa2562c3
commit ea615df200
3 changed files with 2 additions and 4 deletions

View File

@@ -34,7 +34,7 @@ const char* ASTBinary::op_str() const
".", " ** ", " * ", " / ", " // ", " % ", " + ", " - ",
" << ", " >> ", " & ", " ^ ", " | ", " and ", " or ",
" += ", " -= ", " *= ", " /= ", " %= ", " **= ", " <<= ",
" >>= ", " &= ", " ^= ", " |= ", " //= ", "["
" >>= ", " &= ", " ^= ", " |= ", " //= "
};
return s_op_strings[op()];
}