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

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

Issue 885043002: [V8] Added line, column and script symbols for SyntaxError (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebased Created 5 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 | « no previous file | src/isolate.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 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 9
10 #include "src/allocation.h" 10 #include "src/allocation.h"
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 V(stack_trace_symbol) \ 295 V(stack_trace_symbol) \
296 V(detailed_stack_trace_symbol) \ 296 V(detailed_stack_trace_symbol) \
297 V(normal_ic_symbol) \ 297 V(normal_ic_symbol) \
298 V(home_object_symbol) \ 298 V(home_object_symbol) \
299 V(intl_initialized_marker_symbol) \ 299 V(intl_initialized_marker_symbol) \
300 V(intl_impl_object_symbol) \ 300 V(intl_impl_object_symbol) \
301 V(promise_debug_marker_symbol) \ 301 V(promise_debug_marker_symbol) \
302 V(promise_has_handler_symbol) \ 302 V(promise_has_handler_symbol) \
303 V(class_script_symbol) \ 303 V(class_script_symbol) \
304 V(class_start_position_symbol) \ 304 V(class_start_position_symbol) \
305 V(class_end_position_symbol) 305 V(class_end_position_symbol) \
306 V(error_start_pos_symbol) \
307 V(error_end_pos_symbol) \
308 V(error_script_symbol)
306 309
307 #define PUBLIC_SYMBOL_LIST(V) \ 310 #define PUBLIC_SYMBOL_LIST(V) \
308 V(has_instance_symbol, symbolHasInstance, Symbol.hasInstance) \ 311 V(has_instance_symbol, symbolHasInstance, Symbol.hasInstance) \
309 V(is_concat_spreadable_symbol, symbolIsConcatSpreadable, \ 312 V(is_concat_spreadable_symbol, symbolIsConcatSpreadable, \
310 Symbol.isConcatSpreadable) \ 313 Symbol.isConcatSpreadable) \
311 V(is_regexp_symbol, symbolIsRegExp, Symbol.isRegExp) \ 314 V(is_regexp_symbol, symbolIsRegExp, Symbol.isRegExp) \
312 V(iterator_symbol, symbolIterator, Symbol.iterator) \ 315 V(iterator_symbol, symbolIterator, Symbol.iterator) \
313 V(to_string_tag_symbol, symbolToStringTag, Symbol.toStringTag) \ 316 V(to_string_tag_symbol, symbolToStringTag, Symbol.toStringTag) \
314 V(unscopables_symbol, symbolUnscopables, Symbol.unscopables) 317 V(unscopables_symbol, symbolUnscopables, Symbol.unscopables)
315 318
(...skipping 2269 matching lines...) Expand 10 before | Expand all | Expand 10 after
2585 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 2588 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
2586 2589
2587 private: 2590 private:
2588 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2591 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2589 }; 2592 };
2590 #endif // DEBUG 2593 #endif // DEBUG
2591 } 2594 }
2592 } // namespace v8::internal 2595 } // namespace v8::internal
2593 2596
2594 #endif // V8_HEAP_HEAP_H_ 2597 #endif // V8_HEAP_HEAP_H_
OLDNEW
« no previous file with comments | « no previous file | src/isolate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698