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

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

Issue 1129723003: Revert of Resolve references to "this" the same way as normal variables (Closed) Base URL: https://chromium.googlesource.com/v8/v8@master
Patch Set: Created 5 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
« no previous file with comments | « src/contexts.cc ('k') | src/ia32/full-codegen-ia32.cc » ('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 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 V(Function_string, "Function") \ 224 V(Function_string, "Function") \
225 V(length_string, "length") \ 225 V(length_string, "length") \
226 V(name_string, "name") \ 226 V(name_string, "name") \
227 V(null_string, "null") \ 227 V(null_string, "null") \
228 V(number_string, "number") \ 228 V(number_string, "number") \
229 V(Number_string, "Number") \ 229 V(Number_string, "Number") \
230 V(nan_string, "NaN") \ 230 V(nan_string, "NaN") \
231 V(source_string, "source") \ 231 V(source_string, "source") \
232 V(source_url_string, "source_url") \ 232 V(source_url_string, "source_url") \
233 V(source_mapping_url_string, "source_mapping_url") \ 233 V(source_mapping_url_string, "source_mapping_url") \
234 V(this_string, "this") \
235 V(global_string, "global") \ 234 V(global_string, "global") \
236 V(ignore_case_string, "ignoreCase") \ 235 V(ignore_case_string, "ignoreCase") \
237 V(multiline_string, "multiline") \ 236 V(multiline_string, "multiline") \
238 V(sticky_string, "sticky") \ 237 V(sticky_string, "sticky") \
239 V(unicode_string, "unicode") \ 238 V(unicode_string, "unicode") \
240 V(harmony_regexps_string, "harmony_regexps") \ 239 V(harmony_regexps_string, "harmony_regexps") \
241 V(harmony_tostring_string, "harmony_tostring") \ 240 V(harmony_tostring_string, "harmony_tostring") \
242 V(harmony_unicode_regexps_string, "harmony_unicode_regexps") \ 241 V(harmony_unicode_regexps_string, "harmony_unicode_regexps") \
243 V(input_string, "input") \ 242 V(input_string, "input") \
244 V(index_string, "index") \ 243 V(index_string, "index") \
(...skipping 2364 matching lines...) Expand 10 before | Expand all | Expand 10 after
2609 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 2608 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
2610 2609
2611 private: 2610 private:
2612 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2611 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2613 }; 2612 };
2614 #endif // DEBUG 2613 #endif // DEBUG
2615 } 2614 }
2616 } // namespace v8::internal 2615 } // namespace v8::internal
2617 2616
2618 #endif // V8_HEAP_HEAP_H_ 2617 #endif // V8_HEAP_HEAP_H_
OLDNEW
« no previous file with comments | « src/contexts.cc ('k') | src/ia32/full-codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698