Index: src/compiler/operator-properties.h |
diff --git a/src/compiler/operator-properties.h b/src/compiler/operator-properties.h |
index e7ecd931ea8c3d6961f17d4b07d40cb1c4c2eeeb..4fe5f59d747b85353d6d5bc2fd36ea834cc15b22 100644 |
--- a/src/compiler/operator-properties.h |
+++ b/src/compiler/operator-properties.h |
@@ -14,14 +14,17 @@ namespace compiler { |
// Forward declarations. |
class Operator; |
- |
class OperatorProperties final { |
public: |
static bool HasContextInput(const Operator* op); |
static int GetContextInputCount(const Operator* op) { |
return HasContextInput(op) ? 1 : 0; |
} |
- static int GetFrameStateInputCount(const Operator* op); |
+ |
+ static bool HasFrameStateInput(const Operator* op); |
+ static int GetFrameStateInputCount(const Operator* op) { |
+ return HasFrameStateInput(op) ? 1 : 0; |
+ } |
static int GetTotalInputCount(const Operator* op); |