OLD | NEW |
---|---|
1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 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/asmjs/asm-js.h" | 5 #include "src/asmjs/asm-js.h" |
6 | 6 |
7 #include "src/api-natives.h" | 7 #include "src/api-natives.h" |
8 #include "src/api.h" | 8 #include "src/api.h" |
9 #include "src/asmjs/asm-typer.h" | 9 #include "src/asmjs/asm-typer.h" |
10 #include "src/asmjs/asm-wasm-builder.h" | 10 #include "src/asmjs/asm-wasm-builder.h" |
11 #include "src/assert-scope.h" | 11 #include "src/assert-scope.h" |
12 #include "src/ast/ast.h" | |
marja
2016/08/17 12:07:30
Not that super useful since this file will still g
| |
13 #include "src/ast/scopes.h" | |
14 #include "src/execution.h" | 12 #include "src/execution.h" |
15 #include "src/factory.h" | 13 #include "src/factory.h" |
16 #include "src/handles.h" | 14 #include "src/handles.h" |
17 #include "src/isolate.h" | 15 #include "src/isolate.h" |
18 #include "src/objects.h" | 16 #include "src/objects.h" |
19 #include "src/parsing/parser.h" | 17 #include "src/parsing/parser.h" |
20 | 18 |
21 #include "src/wasm/encoder.h" | 19 #include "src/wasm/encoder.h" |
22 #include "src/wasm/module-decoder.h" | 20 #include "src/wasm/module-decoder.h" |
23 #include "src/wasm/wasm-js.h" | 21 #include "src/wasm/wasm-js.h" |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
132 if (retval.is_null()) { | 130 if (retval.is_null()) { |
133 thrower.Error( | 131 thrower.Error( |
134 "WASM.instantiateModuleFromAsm(): foreign init function failed"); | 132 "WASM.instantiateModuleFromAsm(): foreign init function failed"); |
135 return MaybeHandle<Object>(); | 133 return MaybeHandle<Object>(); |
136 } | 134 } |
137 return maybe_module_object; | 135 return maybe_module_object; |
138 } | 136 } |
139 | 137 |
140 } // namespace internal | 138 } // namespace internal |
141 } // namespace v8 | 139 } // namespace v8 |
OLD | NEW |