| OLD | NEW |
| 1 |
| 1 // Copyright 2016 the V8 project authors. All rights reserved. | 2 // Copyright 2016 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 3 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 4 // found in the LICENSE file. |
| 4 | 5 |
| 5 #ifndef V8_WASM_OBJECTS_H_ | 6 #ifndef V8_WASM_OBJECTS_H_ |
| 6 #define V8_WASM_OBJECTS_H_ | 7 #define V8_WASM_OBJECTS_H_ |
| 7 | 8 |
| 8 #include "src/objects-inl.h" | 9 #include "src/objects-inl.h" |
| 10 #include "src/trap-handler/trap-handler.h" |
| 9 #include "src/wasm/managed.h" | 11 #include "src/wasm/managed.h" |
| 10 | 12 |
| 11 namespace v8 { | 13 namespace v8 { |
| 12 namespace internal { | 14 namespace internal { |
| 13 namespace wasm { | 15 namespace wasm { |
| 14 struct WasmModule; | 16 struct WasmModule; |
| 15 } | 17 } |
| 16 | 18 |
| 17 class WasmCompiledModule; | 19 class WasmCompiledModule; |
| 18 class WasmDebugInfo; | 20 class WasmDebugInfo; |
| (...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 370 }; | 372 }; |
| 371 }; | 373 }; |
| 372 | 374 |
| 373 #undef DECLARE_ACCESSORS | 375 #undef DECLARE_ACCESSORS |
| 374 #undef DECLARE_OPTIONAL_ACCESSORS | 376 #undef DECLARE_OPTIONAL_ACCESSORS |
| 375 | 377 |
| 376 } // namespace internal | 378 } // namespace internal |
| 377 } // namespace v8 | 379 } // namespace v8 |
| 378 | 380 |
| 379 #endif // V8_WASM_OBJECTS_H_ | 381 #endif // V8_WASM_OBJECTS_H_ |
| OLD | NEW |