Index: src/code-factory.h |
diff --git a/src/code-factory.h b/src/code-factory.h |
index 2abc41a8ef08c5914ca268cce43f8e4b0b9c19db..4dd9ecc80472716a13c3b43a24ae3e6b55004b40 100644 |
--- a/src/code-factory.h |
+++ b/src/code-factory.h |
@@ -85,6 +85,9 @@ class CodeFactory final { |
static Callable Multiply(Isolate* isolate); |
static Callable Divide(Isolate* isolate); |
static Callable Modulus(Isolate* isolate); |
+ static Callable ShiftRight(Isolate* isolate); |
+ static Callable ShiftRightLogical(Isolate* isolate); |
+ static Callable ShiftLeft(Isolate* isolate); |
static Callable BitwiseAnd(Isolate* isolate); |
static Callable BitwiseOr(Isolate* isolate); |
static Callable BitwiseXor(Isolate* isolate); |