Chromium Code Reviews| Index: test/unittests/compiler/node-test-utils.h |
| diff --git a/test/unittests/compiler/node-test-utils.h b/test/unittests/compiler/node-test-utils.h |
| index 1a28fe3e4926a6a7f70dec9513b35f9f53eed068..40fc599e2e8e22daa64d613dc4c60f30ab937c3f 100644 |
| --- a/test/unittests/compiler/node-test-utils.h |
| +++ b/test/unittests/compiler/node-test-utils.h |
| @@ -5,6 +5,7 @@ |
| #ifndef V8_UNITTESTS_COMPILER_NODE_TEST_UTILS_H_ |
| #define V8_UNITTESTS_COMPILER_NODE_TEST_UTILS_H_ |
| +#include "src/compiler/js-operator.h" |
|
Michael Starzinger
2015/11/24 13:51:24
The include shouldn't be needed anymore, let's dro
|
| #include "src/compiler/machine-operator.h" |
| #include "src/compiler/machine-type.h" |
| #include "testing/gmock/include/gmock/gmock.h" |
| @@ -405,6 +406,10 @@ Matcher<Node*> IsJSDeleteProperty(const Matcher<Node*>& object_value_matcher, |
| const Matcher<Node*>& key_matcher, |
| const Matcher<Node*>& effect_matcher, |
| const Matcher<Node*>& control_matcher); |
| +Matcher<Node*> IsCreateClosure(const Handle<SharedFunctionInfo> shared_info, |
| + PretenureFlag pretenure, |
| + const Matcher<Node*>& effect_matcher, |
| + const Matcher<Node*>& control_matcher); |
| } // namespace compiler |
| } // namespace internal |