| OLD | NEW |
| (Empty) |
| 1 // Copyright 2014 the V8 project authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef V8_COMPILER_UNITTESTS_COMMON_OPERATOR_UNITTEST_H_ | |
| 6 #define V8_COMPILER_UNITTESTS_COMMON_OPERATOR_UNITTEST_H_ | |
| 7 | |
| 8 #include "src/compiler/common-operator.h" | |
| 9 #include "test/compiler-unittests/compiler-unittests.h" | |
| 10 | |
| 11 namespace v8 { | |
| 12 namespace internal { | |
| 13 namespace compiler { | |
| 14 | |
| 15 class CommonOperatorTest : public CompilerTest { | |
| 16 public: | |
| 17 CommonOperatorTest(); | |
| 18 virtual ~CommonOperatorTest(); | |
| 19 | |
| 20 protected: | |
| 21 CommonOperatorBuilder* common() { return &common_; } | |
| 22 | |
| 23 private: | |
| 24 CommonOperatorBuilder common_; | |
| 25 }; | |
| 26 | |
| 27 } // namespace compiler | |
| 28 } // namespace internal | |
| 29 } // namespace v8 | |
| 30 | |
| 31 #endif // V8_COMPILER_UNITTESTS_COMMON_OPERATOR_UNITTEST_H_ | |
| OLD | NEW |