Index: src/interpreter/bytecode-array-builder.h |
diff --git a/src/interpreter/bytecode-array-builder.h b/src/interpreter/bytecode-array-builder.h |
index 3cdea52aae08488f00109c26786080664407301e..907aa8661d1f9ec0e688d23120b5efe97dbdba18 100644 |
--- a/src/interpreter/bytecode-array-builder.h |
+++ b/src/interpreter/bytecode-array-builder.h |
@@ -315,6 +315,9 @@ class BytecodeArrayBuilder final : public ZoneObject { |
int operand_index, uint32_t operand_value) const; |
bool RegisterIsValid(Register reg, OperandSize reg_size) const; |
+ // Test if bytecode needs an expression position to be attached. |
+ static bool NeedExpressionPosition(Bytecode bytecode); |
Yang
2016/06/08 13:04:54
I wonder whether that should belong in interpreter
oth
2016/06/08 15:04:21
Yes, it could do. The only quirk with this is that
|
+ |
// Attach latest source position to |node|. |
void AttachSourceInfo(BytecodeNode* node); |