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

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

Issue 1986173002: Refactor script position calculation (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Remove Script.line_ends Created 4 years, 7 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 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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_SYMBOLS_H_ 5 #ifndef V8_HEAP_SYMBOLS_H_
6 #define V8_HEAP_SYMBOLS_H_ 6 #define V8_HEAP_SYMBOLS_H_
7 7
8 #define INTERNALIZED_STRING_LIST(V) \ 8 #define INTERNALIZED_STRING_LIST(V) \
9 V(anonymous_string, "anonymous") \ 9 V(anonymous_string, "anonymous") \
10 V(apply_string, "apply") \ 10 V(apply_string, "apply") \
(...skipping 12 matching lines...) Expand all
23 V(Boolean_string, "Boolean") \ 23 V(Boolean_string, "Boolean") \
24 V(bound__string, "bound ") \ 24 V(bound__string, "bound ") \
25 V(byte_length_string, "byteLength") \ 25 V(byte_length_string, "byteLength") \
26 V(byte_offset_string, "byteOffset") \ 26 V(byte_offset_string, "byteOffset") \
27 V(call_string, "call") \ 27 V(call_string, "call") \
28 V(callee_string, "callee") \ 28 V(callee_string, "callee") \
29 V(caller_string, "caller") \ 29 V(caller_string, "caller") \
30 V(cell_value_string, "%cell_value") \ 30 V(cell_value_string, "%cell_value") \
31 V(char_at_string, "CharAt") \ 31 V(char_at_string, "CharAt") \
32 V(closure_string, "(closure)") \ 32 V(closure_string, "(closure)") \
33 V(column_string, "column") \
33 V(compare_ic_string, "==") \ 34 V(compare_ic_string, "==") \
34 V(configurable_string, "configurable") \ 35 V(configurable_string, "configurable") \
35 V(constructor_string, "constructor") \ 36 V(constructor_string, "constructor") \
36 V(construct_string, "construct") \ 37 V(construct_string, "construct") \
37 V(create_string, "create") \ 38 V(create_string, "create") \
38 V(Date_string, "Date") \ 39 V(Date_string, "Date") \
39 V(default_string, "default") \ 40 V(default_string, "default") \
40 V(defineProperty_string, "defineProperty") \ 41 V(defineProperty_string, "defineProperty") \
41 V(deleteProperty_string, "deleteProperty") \ 42 V(deleteProperty_string, "deleteProperty") \
42 V(display_name_string, "displayName") \ 43 V(display_name_string, "displayName") \
(...skipping 28 matching lines...) Expand all
71 V(int32x4_string, "int32x4") \ 72 V(int32x4_string, "int32x4") \
72 V(Int32x4_string, "Int32x4") \ 73 V(Int32x4_string, "Int32x4") \
73 V(int8x16_string, "int8x16") \ 74 V(int8x16_string, "int8x16") \
74 V(Int8x16_string, "Int8x16") \ 75 V(Int8x16_string, "Int8x16") \
75 V(isExtensible_string, "isExtensible") \ 76 V(isExtensible_string, "isExtensible") \
76 V(isView_string, "isView") \ 77 V(isView_string, "isView") \
77 V(KeyedLoadMonomorphic_string, "KeyedLoadMonomorphic") \ 78 V(KeyedLoadMonomorphic_string, "KeyedLoadMonomorphic") \
78 V(KeyedStoreMonomorphic_string, "KeyedStoreMonomorphic") \ 79 V(KeyedStoreMonomorphic_string, "KeyedStoreMonomorphic") \
79 V(last_index_string, "lastIndex") \ 80 V(last_index_string, "lastIndex") \
80 V(length_string, "length") \ 81 V(length_string, "length") \
82 V(line_string, "line") \
83 V(line_start_string, "line_start") \
84 V(line_end_string, "line_end") \
81 V(Map_string, "Map") \ 85 V(Map_string, "Map") \
82 V(minus_infinity_string, "-Infinity") \ 86 V(minus_infinity_string, "-Infinity") \
83 V(minus_zero_string, "-0") \ 87 V(minus_zero_string, "-0") \
84 V(name_string, "name") \ 88 V(name_string, "name") \
85 V(nan_string, "NaN") \ 89 V(nan_string, "NaN") \
86 V(next_string, "next") \ 90 V(next_string, "next") \
87 V(null_string, "null") \ 91 V(null_string, "null") \
88 V(null_to_string, "[object Null]") \ 92 V(null_to_string, "[object Null]") \
89 V(number_string, "number") \ 93 V(number_string, "number") \
90 V(Number_string, "Number") \ 94 V(Number_string, "Number") \
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 // Well-Known Symbols are "Public" symbols, which have a bit set which causes 196 // Well-Known Symbols are "Public" symbols, which have a bit set which causes
193 // them to produce an undefined value when a load results in a failed access 197 // them to produce an undefined value when a load results in a failed access
194 // check. Because this behaviour is not specified properly as of yet, it only 198 // check. Because this behaviour is not specified properly as of yet, it only
195 // applies to a subset of spec-defined Well-Known Symbols. 199 // applies to a subset of spec-defined Well-Known Symbols.
196 #define WELL_KNOWN_SYMBOL_LIST(V) \ 200 #define WELL_KNOWN_SYMBOL_LIST(V) \
197 V(has_instance_symbol, Symbol.hasInstance) \ 201 V(has_instance_symbol, Symbol.hasInstance) \
198 V(is_concat_spreadable_symbol, Symbol.isConcatSpreadable) \ 202 V(is_concat_spreadable_symbol, Symbol.isConcatSpreadable) \
199 V(to_string_tag_symbol, Symbol.toStringTag) 203 V(to_string_tag_symbol, Symbol.toStringTag)
200 204
201 #endif // V8_HEAP_SYMBOLS_H_ 205 #endif // V8_HEAP_SYMBOLS_H_
OLDNEW
« no previous file with comments | « src/bootstrapper.cc ('k') | src/isolate.cc » ('j') | src/isolate.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698