| OLD | NEW |
| 1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef V8_COMPILER_JS_OPERATOR_H_ | 5 #ifndef V8_COMPILER_JS_OPERATOR_H_ |
| 6 #define V8_COMPILER_JS_OPERATOR_H_ | 6 #define V8_COMPILER_JS_OPERATOR_H_ |
| 7 | 7 |
| 8 #include "src/compiler/type-hints.h" | |
| 9 #include "src/runtime/runtime.h" | 8 #include "src/runtime/runtime.h" |
| 9 #include "src/type-hints.h" |
| 10 | 10 |
| 11 namespace v8 { | 11 namespace v8 { |
| 12 namespace internal { | 12 namespace internal { |
| 13 namespace compiler { | 13 namespace compiler { |
| 14 | 14 |
| 15 // Forward declarations. | 15 // Forward declarations. |
| 16 class Operator; | 16 class Operator; |
| 17 struct JSOperatorGlobalCache; | 17 struct JSOperatorGlobalCache; |
| 18 | 18 |
| 19 | 19 |
| (...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 532 Zone* const zone_; | 532 Zone* const zone_; |
| 533 | 533 |
| 534 DISALLOW_COPY_AND_ASSIGN(JSOperatorBuilder); | 534 DISALLOW_COPY_AND_ASSIGN(JSOperatorBuilder); |
| 535 }; | 535 }; |
| 536 | 536 |
| 537 } // namespace compiler | 537 } // namespace compiler |
| 538 } // namespace internal | 538 } // namespace internal |
| 539 } // namespace v8 | 539 } // namespace v8 |
| 540 | 540 |
| 541 #endif // V8_COMPILER_JS_OPERATOR_H_ | 541 #endif // V8_COMPILER_JS_OPERATOR_H_ |
| OLD | NEW |