(cherry picked from commit f037a697eb2ce45d63840dfe87c48212d7cbf09e)
@@ -2334,6 +2334,7 @@ def get_operator_id_name(op):
"unary-": "negate",
"unary+": "positive",
"%": "module",
+ "**": "power",
"<<": "shift_left",
">>": "shift_right",
"&": "bit_and",
@@ -122,6 +122,7 @@ public:
OP_NEGATE,
OP_POSITIVE,
OP_MODULE,
+ OP_POWER,
// bitwise
OP_SHIFT_LEFT,
OP_SHIFT_RIGHT,