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

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

Issue 2406343002: [promises] Move PromiseReactionJob to c++ (Closed)
Patch Set: fix whitespace Created 4 years, 2 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
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 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
255 #define FIXED_TYPED_ARRAY_CASE(Type, type, TYPE, ctype, size) \ 255 #define FIXED_TYPED_ARRAY_CASE(Type, type, TYPE, ctype, size) \
256 case FIXED_##TYPE##_ARRAY_TYPE: 256 case FIXED_##TYPE##_ARRAY_TYPE:
257 257
258 TYPED_ARRAYS(FIXED_TYPED_ARRAY_CASE) 258 TYPED_ARRAYS(FIXED_TYPED_ARRAY_CASE)
259 #undef FIXED_TYPED_ARRAY_CASE 259 #undef FIXED_TYPED_ARRAY_CASE
260 case FILLER_TYPE: 260 case FILLER_TYPE:
261 case ACCESS_CHECK_INFO_TYPE: 261 case ACCESS_CHECK_INFO_TYPE:
262 case INTERCEPTOR_INFO_TYPE: 262 case INTERCEPTOR_INFO_TYPE:
263 case CALL_HANDLER_INFO_TYPE: 263 case CALL_HANDLER_INFO_TYPE:
264 case PROMISE_CONTAINER_TYPE: 264 case PROMISE_CONTAINER_TYPE:
265 case PROMISE_HANDLE_INFO_TYPE:
265 case FUNCTION_TEMPLATE_INFO_TYPE: 266 case FUNCTION_TEMPLATE_INFO_TYPE:
266 case OBJECT_TEMPLATE_INFO_TYPE: 267 case OBJECT_TEMPLATE_INFO_TYPE:
267 case SIGNATURE_INFO_TYPE: 268 case SIGNATURE_INFO_TYPE:
268 case TYPE_SWITCH_INFO_TYPE: 269 case TYPE_SWITCH_INFO_TYPE:
269 case ALLOCATION_MEMENTO_TYPE: 270 case ALLOCATION_MEMENTO_TYPE:
270 case TYPE_FEEDBACK_INFO_TYPE: 271 case TYPE_FEEDBACK_INFO_TYPE:
271 case ALIASED_ARGUMENTS_ENTRY_TYPE: 272 case ALIASED_ARGUMENTS_ENTRY_TYPE:
272 case BOX_TYPE: 273 case BOX_TYPE:
273 case DEBUG_INFO_TYPE: 274 case DEBUG_INFO_TYPE:
274 case BREAK_POINT_INFO_TYPE: 275 case BREAK_POINT_INFO_TYPE:
(...skipping 987 matching lines...) Expand 10 before | Expand all | Expand 10 after
1262 #undef CONSTRUCT_SIMD_TYPE 1263 #undef CONSTRUCT_SIMD_TYPE
1263 1264
1264 // ----------------------------------------------------------------------------- 1265 // -----------------------------------------------------------------------------
1265 // Instantiations. 1266 // Instantiations.
1266 1267
1267 template class AstType::Iterator<i::Map>; 1268 template class AstType::Iterator<i::Map>;
1268 template class AstType::Iterator<i::Object>; 1269 template class AstType::Iterator<i::Object>;
1269 1270
1270 } // namespace internal 1271 } // namespace internal
1271 } // namespace v8 1272 } // namespace v8
OLDNEW
« no previous file with comments | « include/v8.h ('k') | src/compiler/types.cc » ('j') | src/isolate.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698