Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(150)

Side by Side Diff: src/ast/ast-types.cc

Issue 2314903004: [promises] Move PromiseResolveThenableJob to c++ (Closed)
Patch Set: rebase Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « include/v8.h ('k') | src/compiler/types.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 <iomanip> 5 #include <iomanip>
6 6
7 #include "src/ast/ast-types.h" 7 #include "src/ast/ast-types.h"
8 8
9 #include "src/handles-inl.h" 9 #include "src/handles-inl.h"
10 #include "src/ostreams.h" 10 #include "src/ostreams.h"
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 case FREE_SPACE_TYPE: 252 case FREE_SPACE_TYPE:
253 #define FIXED_TYPED_ARRAY_CASE(Type, type, TYPE, ctype, size) \ 253 #define FIXED_TYPED_ARRAY_CASE(Type, type, TYPE, ctype, size) \
254 case FIXED_##TYPE##_ARRAY_TYPE: 254 case FIXED_##TYPE##_ARRAY_TYPE:
255 255
256 TYPED_ARRAYS(FIXED_TYPED_ARRAY_CASE) 256 TYPED_ARRAYS(FIXED_TYPED_ARRAY_CASE)
257 #undef FIXED_TYPED_ARRAY_CASE 257 #undef FIXED_TYPED_ARRAY_CASE
258 case FILLER_TYPE: 258 case FILLER_TYPE:
259 case ACCESS_CHECK_INFO_TYPE: 259 case ACCESS_CHECK_INFO_TYPE:
260 case INTERCEPTOR_INFO_TYPE: 260 case INTERCEPTOR_INFO_TYPE:
261 case CALL_HANDLER_INFO_TYPE: 261 case CALL_HANDLER_INFO_TYPE:
262 case PROMISE_CONTAINER_TYPE:
262 case FUNCTION_TEMPLATE_INFO_TYPE: 263 case FUNCTION_TEMPLATE_INFO_TYPE:
263 case OBJECT_TEMPLATE_INFO_TYPE: 264 case OBJECT_TEMPLATE_INFO_TYPE:
264 case SIGNATURE_INFO_TYPE: 265 case SIGNATURE_INFO_TYPE:
265 case TYPE_SWITCH_INFO_TYPE: 266 case TYPE_SWITCH_INFO_TYPE:
266 case ALLOCATION_MEMENTO_TYPE: 267 case ALLOCATION_MEMENTO_TYPE:
267 case TYPE_FEEDBACK_INFO_TYPE: 268 case TYPE_FEEDBACK_INFO_TYPE:
268 case ALIASED_ARGUMENTS_ENTRY_TYPE: 269 case ALIASED_ARGUMENTS_ENTRY_TYPE:
269 case BOX_TYPE: 270 case BOX_TYPE:
270 case DEBUG_INFO_TYPE: 271 case DEBUG_INFO_TYPE:
271 case BREAK_POINT_INFO_TYPE: 272 case BREAK_POINT_INFO_TYPE:
(...skipping 987 matching lines...) Expand 10 before | Expand all | Expand 10 after
1259 #undef CONSTRUCT_SIMD_TYPE 1260 #undef CONSTRUCT_SIMD_TYPE
1260 1261
1261 // ----------------------------------------------------------------------------- 1262 // -----------------------------------------------------------------------------
1262 // Instantiations. 1263 // Instantiations.
1263 1264
1264 template class AstType::Iterator<i::Map>; 1265 template class AstType::Iterator<i::Map>;
1265 template class AstType::Iterator<i::Object>; 1266 template class AstType::Iterator<i::Object>;
1266 1267
1267 } // namespace internal 1268 } // namespace internal
1268 } // namespace v8 1269 } // namespace v8
OLDNEW
« no previous file with comments | « include/v8.h ('k') | src/compiler/types.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698