Index: src/interpreter/bytecode-array-builder.h |
diff --git a/src/interpreter/bytecode-array-builder.h b/src/interpreter/bytecode-array-builder.h |
index acd7138cfcd5c55b3e52269d8410a73b3cd14785..bab63648d40a072466ed89ebddfc839085e3f249 100644 |
--- a/src/interpreter/bytecode-array-builder.h |
+++ b/src/interpreter/bytecode-array-builder.h |
@@ -125,9 +125,12 @@ class BytecodeArrayBuilder { |
BytecodeArrayBuilder& CreateArguments(CreateArgumentsType type); |
// Literals creation. Constant elements should be in the accumulator. |
- BytecodeArrayBuilder& CreateRegExpLiteral(int literal_index, int flags); |
- BytecodeArrayBuilder& CreateArrayLiteral(int literal_index, int flags); |
- BytecodeArrayBuilder& CreateObjectLiteral(int literal_index, int flags); |
+ BytecodeArrayBuilder& CreateRegExpLiteral(Handle<String> pattern, |
+ int literal_index, int flags); |
+ BytecodeArrayBuilder& CreateArrayLiteral(Handle<FixedArray> constant_elements, |
+ int literal_index, int flags); |
+ BytecodeArrayBuilder& CreateObjectLiteral( |
+ Handle<FixedArray> constant_properties, int literal_index, int flags); |
// Push the context in accumulator as the new context, and store in register |
// |context|. |