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

Side by Side Diff: src/heap/heap.h

Issue 1581033002: [es7] implement Object.values() / Object.entries() proposal (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Execution::ToObject() -> Object::ToObject(), test fixups Created 4 years, 11 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/flag-definitions.h ('k') | test/mjsunit/harmony/object-entries.js » ('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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 #ifndef V8_HEAP_HEAP_H_ 5 #ifndef V8_HEAP_HEAP_H_
6 #define V8_HEAP_HEAP_H_ 6 #define V8_HEAP_HEAP_H_
7 7
8 #include <cmath> 8 #include <cmath>
9 #include <map> 9 #include <map>
10 10
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 V(construct_string, "construct") \ 240 V(construct_string, "construct") \
241 V(create_string, "create") \ 241 V(create_string, "create") \
242 V(Date_string, "Date") \ 242 V(Date_string, "Date") \
243 V(default_string, "default") \ 243 V(default_string, "default") \
244 V(defineProperty_string, "defineProperty") \ 244 V(defineProperty_string, "defineProperty") \
245 V(deleteProperty_string, "deleteProperty") \ 245 V(deleteProperty_string, "deleteProperty") \
246 V(display_name_string, "displayName") \ 246 V(display_name_string, "displayName") \
247 V(done_string, "done") \ 247 V(done_string, "done") \
248 V(dot_result_string, ".result") \ 248 V(dot_result_string, ".result") \
249 V(dot_string, ".") \ 249 V(dot_string, ".") \
250 V(entries_string, "entries") \
250 V(enumerable_string, "enumerable") \ 251 V(enumerable_string, "enumerable") \
251 V(enumerate_string, "enumerate") \ 252 V(enumerate_string, "enumerate") \
252 V(Error_string, "Error") \ 253 V(Error_string, "Error") \
253 V(eval_string, "eval") \ 254 V(eval_string, "eval") \
254 V(false_string, "false") \ 255 V(false_string, "false") \
255 V(float32x4_string, "float32x4") \ 256 V(float32x4_string, "float32x4") \
256 V(Float32x4_string, "Float32x4") \ 257 V(Float32x4_string, "Float32x4") \
257 V(for_api_string, "for_api") \ 258 V(for_api_string, "for_api") \
258 V(for_string, "for") \ 259 V(for_string, "for") \
259 V(function_string, "function") \ 260 V(function_string, "function") \
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 V(true_string, "true") \ 322 V(true_string, "true") \
322 V(uint16x8_string, "uint16x8") \ 323 V(uint16x8_string, "uint16x8") \
323 V(Uint16x8_string, "Uint16x8") \ 324 V(Uint16x8_string, "Uint16x8") \
324 V(uint32x4_string, "uint32x4") \ 325 V(uint32x4_string, "uint32x4") \
325 V(Uint32x4_string, "Uint32x4") \ 326 V(Uint32x4_string, "Uint32x4") \
326 V(uint8x16_string, "uint8x16") \ 327 V(uint8x16_string, "uint8x16") \
327 V(Uint8x16_string, "Uint8x16") \ 328 V(Uint8x16_string, "Uint8x16") \
328 V(undefined_string, "undefined") \ 329 V(undefined_string, "undefined") \
329 V(undefined_to_string, "[object Undefined]") \ 330 V(undefined_to_string, "[object Undefined]") \
330 V(valueOf_string, "valueOf") \ 331 V(valueOf_string, "valueOf") \
332 V(values_string, "values") \
331 V(value_string, "value") \ 333 V(value_string, "value") \
332 V(WeakMap_string, "WeakMap") \ 334 V(WeakMap_string, "WeakMap") \
333 V(WeakSet_string, "WeakSet") \ 335 V(WeakSet_string, "WeakSet") \
334 V(writable_string, "writable") 336 V(writable_string, "writable")
335 337
336 #define PRIVATE_SYMBOL_LIST(V) \ 338 #define PRIVATE_SYMBOL_LIST(V) \
337 V(array_iteration_kind_symbol) \ 339 V(array_iteration_kind_symbol) \
338 V(array_iterator_next_symbol) \ 340 V(array_iterator_next_symbol) \
339 V(array_iterator_object_symbol) \ 341 V(array_iterator_object_symbol) \
340 V(call_site_function_symbol) \ 342 V(call_site_function_symbol) \
(...skipping 2446 matching lines...) Expand 10 before | Expand all | Expand 10 after
2787 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 2789 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
2788 2790
2789 private: 2791 private:
2790 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2792 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2791 }; 2793 };
2792 #endif // DEBUG 2794 #endif // DEBUG
2793 } // namespace internal 2795 } // namespace internal
2794 } // namespace v8 2796 } // namespace v8
2795 2797
2796 #endif // V8_HEAP_HEAP_H_ 2798 #endif // V8_HEAP_HEAP_H_
OLDNEW
« no previous file with comments | « src/flag-definitions.h ('k') | test/mjsunit/harmony/object-entries.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698