Support @ operator

This commit is contained in:
Michael Hansen
2015-10-01 17:01:02 -07:00
parent aea5b2dab1
commit badd17bd21
4 changed files with 19 additions and 2 deletions

View File

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