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

Side by Side Diff: src/heap/objects-visiting.cc

Issue 2645313003: [async-iteration] implement Async-from-Sync Iterator (Closed)
Patch Set: cleanmerge Created 3 years, 10 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 | « src/factory.cc ('k') | src/interpreter/interpreter-intrinsics.h » ('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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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/heap/objects-visiting.h" 5 #include "src/heap/objects-visiting.h"
6 6
7 #include "src/heap/heap-inl.h" 7 #include "src/heap/heap-inl.h"
8 #include "src/heap/mark-compact-inl.h" 8 #include "src/heap/mark-compact-inl.h"
9 #include "src/heap/objects-visiting-inl.h" 9 #include "src/heap/objects-visiting-inl.h"
10 10
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 102
103 case SYMBOL_TYPE: 103 case SYMBOL_TYPE:
104 return kVisitSymbol; 104 return kVisitSymbol;
105 105
106 case JS_ARRAY_BUFFER_TYPE: 106 case JS_ARRAY_BUFFER_TYPE:
107 return kVisitJSArrayBuffer; 107 return kVisitJSArrayBuffer;
108 108
109 case JS_OBJECT_TYPE: 109 case JS_OBJECT_TYPE:
110 case JS_ERROR_TYPE: 110 case JS_ERROR_TYPE:
111 case JS_ARGUMENTS_TYPE: 111 case JS_ARGUMENTS_TYPE:
112 case JS_ASYNC_FROM_SYNC_ITERATOR_TYPE:
112 case JS_CONTEXT_EXTENSION_OBJECT_TYPE: 113 case JS_CONTEXT_EXTENSION_OBJECT_TYPE:
113 case JS_GENERATOR_OBJECT_TYPE: 114 case JS_GENERATOR_OBJECT_TYPE:
114 case JS_MODULE_NAMESPACE_TYPE: 115 case JS_MODULE_NAMESPACE_TYPE:
115 case JS_VALUE_TYPE: 116 case JS_VALUE_TYPE:
116 case JS_DATE_TYPE: 117 case JS_DATE_TYPE:
117 case JS_ARRAY_TYPE: 118 case JS_ARRAY_TYPE:
118 case JS_GLOBAL_PROXY_TYPE: 119 case JS_GLOBAL_PROXY_TYPE:
119 case JS_GLOBAL_OBJECT_TYPE: 120 case JS_GLOBAL_OBJECT_TYPE:
120 case JS_MESSAGE_OBJECT_TYPE: 121 case JS_MESSAGE_OBJECT_TYPE:
121 case JS_TYPED_ARRAY_TYPE: 122 case JS_TYPED_ARRAY_TYPE:
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after
400 }; 401 };
401 402
402 403
403 template Object* VisitWeakList<Context>(Heap* heap, Object* list, 404 template Object* VisitWeakList<Context>(Heap* heap, Object* list,
404 WeakObjectRetainer* retainer); 405 WeakObjectRetainer* retainer);
405 406
406 template Object* VisitWeakList<AllocationSite>(Heap* heap, Object* list, 407 template Object* VisitWeakList<AllocationSite>(Heap* heap, Object* list,
407 WeakObjectRetainer* retainer); 408 WeakObjectRetainer* retainer);
408 } // namespace internal 409 } // namespace internal
409 } // namespace v8 410 } // namespace v8
OLDNEW
« no previous file with comments | « src/factory.cc ('k') | src/interpreter/interpreter-intrinsics.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698