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

Side by Side Diff: src/contexts.h

Issue 1346893003: [es6] Use the correct ToPrimitive in the Date Constructor. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 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 | « no previous file | src/date.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_CONTEXTS_H_ 5 #ifndef V8_CONTEXTS_H_
6 #define V8_CONTEXTS_H_ 6 #define V8_CONTEXTS_H_
7 7
8 #include "src/heap/heap.h" 8 #include "src/heap/heap.h"
9 #include "src/objects.h" 9 #include "src/objects.h"
10 10
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 V(MAKE_RANGE_ERROR_INDEX, JSFunction, make_range_error) \ 79 V(MAKE_RANGE_ERROR_INDEX, JSFunction, make_range_error) \
80 V(MAKE_TYPE_ERROR_INDEX, JSFunction, make_type_error) \ 80 V(MAKE_TYPE_ERROR_INDEX, JSFunction, make_type_error) \
81 V(NON_NUMBER_TO_NUMBER_INDEX, JSFunction, non_number_to_number) \ 81 V(NON_NUMBER_TO_NUMBER_INDEX, JSFunction, non_number_to_number) \
82 V(NON_STRING_TO_STRING_INDEX, JSFunction, non_string_to_string) \ 82 V(NON_STRING_TO_STRING_INDEX, JSFunction, non_string_to_string) \
83 V(REFLECT_APPLY_INDEX, JSFunction, reflect_apply) \ 83 V(REFLECT_APPLY_INDEX, JSFunction, reflect_apply) \
84 V(REFLECT_CONSTRUCT_INDEX, JSFunction, reflect_construct) \ 84 V(REFLECT_CONSTRUCT_INDEX, JSFunction, reflect_construct) \
85 V(SPREAD_ARGUMENTS_INDEX, JSFunction, spread_arguments) \ 85 V(SPREAD_ARGUMENTS_INDEX, JSFunction, spread_arguments) \
86 V(SPREAD_ITERABLE_INDEX, JSFunction, spread_iterable) \ 86 V(SPREAD_ITERABLE_INDEX, JSFunction, spread_iterable) \
87 V(TO_LENGTH_FUN_INDEX, JSFunction, to_length_fun) \ 87 V(TO_LENGTH_FUN_INDEX, JSFunction, to_length_fun) \
88 V(TO_NUMBER_FUN_INDEX, JSFunction, to_number_fun) \ 88 V(TO_NUMBER_FUN_INDEX, JSFunction, to_number_fun) \
89 V(TO_PRIMITIVE_INDEX, JSFunction, to_primitive) \
90 V(TO_STRING_FUN_INDEX, JSFunction, to_string_fun) 89 V(TO_STRING_FUN_INDEX, JSFunction, to_string_fun)
91 90
92 91
93 #define NATIVE_CONTEXT_JS_BUILTINS(V) \ 92 #define NATIVE_CONTEXT_JS_BUILTINS(V) \
94 V(APPLY_PREPARE_BUILTIN_INDEX, JSFunction, apply_prepare_builtin) \ 93 V(APPLY_PREPARE_BUILTIN_INDEX, JSFunction, apply_prepare_builtin) \
95 V(CONCAT_ITERABLE_TO_ARRAY_BUILTIN_INDEX, JSFunction, \ 94 V(CONCAT_ITERABLE_TO_ARRAY_BUILTIN_INDEX, JSFunction, \
96 concat_iterable_to_array_builtin) \ 95 concat_iterable_to_array_builtin) \
97 V(REFLECT_APPLY_PREPARE_BUILTIN_INDEX, JSFunction, \ 96 V(REFLECT_APPLY_PREPARE_BUILTIN_INDEX, JSFunction, \
98 reflect_apply_prepare_builtin) \ 97 reflect_apply_prepare_builtin) \
99 V(REFLECT_CONSTRUCT_PREPARE_BUILTIN_INDEX, JSFunction, \ 98 V(REFLECT_CONSTRUCT_PREPARE_BUILTIN_INDEX, JSFunction, \
(...skipping 450 matching lines...) Expand 10 before | Expand all | Expand 10 after
550 static bool IsBootstrappingOrGlobalObject(Isolate* isolate, Object* object); 549 static bool IsBootstrappingOrGlobalObject(Isolate* isolate, Object* object);
551 #endif 550 #endif
552 551
553 STATIC_ASSERT(kHeaderSize == Internals::kContextHeaderSize); 552 STATIC_ASSERT(kHeaderSize == Internals::kContextHeaderSize);
554 STATIC_ASSERT(EMBEDDER_DATA_INDEX == Internals::kContextEmbedderDataIndex); 553 STATIC_ASSERT(EMBEDDER_DATA_INDEX == Internals::kContextEmbedderDataIndex);
555 }; 554 };
556 555
557 } } // namespace v8::internal 556 } } // namespace v8::internal
558 557
559 #endif // V8_CONTEXTS_H_ 558 #endif // V8_CONTEXTS_H_
OLDNEW
« no previous file with comments | « no previous file | src/date.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698