OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 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 | 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 #include "src/compiler/js-operator.h" | 5 #include "src/compiler/js-operator.h" |
6 #include "src/compiler/operator-properties-inl.h" | 6 #include "src/compiler/opcodes.h" |
| 7 #include "src/compiler/operator.h" |
| 8 #include "src/compiler/operator-properties.h" |
7 #include "test/unittests/test-utils.h" | 9 #include "test/unittests/test-utils.h" |
8 | 10 |
9 namespace v8 { | 11 namespace v8 { |
10 namespace internal { | 12 namespace internal { |
11 namespace compiler { | 13 namespace compiler { |
12 | 14 |
13 // ----------------------------------------------------------------------------- | 15 // ----------------------------------------------------------------------------- |
14 // Shared operators. | 16 // Shared operators. |
15 | 17 |
16 | 18 |
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
206 EXPECT_EQ(Operator::kNoProperties, op->properties()); | 208 EXPECT_EQ(Operator::kNoProperties, op->properties()); |
207 } | 209 } |
208 | 210 |
209 | 211 |
210 INSTANTIATE_TEST_CASE_P(JSOperatorTest, JSStorePropertyOperatorTest, | 212 INSTANTIATE_TEST_CASE_P(JSOperatorTest, JSStorePropertyOperatorTest, |
211 ::testing::Values(SLOPPY, STRICT)); | 213 ::testing::Values(SLOPPY, STRICT)); |
212 | 214 |
213 } // namespace compiler | 215 } // namespace compiler |
214 } // namespace internal | 216 } // namespace internal |
215 } // namespace v8 | 217 } // namespace v8 |
OLD | NEW |