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

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

Issue 788043005: ES6 unicode escapes, part 2: Regexps. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: mirror regexp test Created 5 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
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 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 V(number_string, "number") \ 220 V(number_string, "number") \
221 V(Number_string, "Number") \ 221 V(Number_string, "Number") \
222 V(nan_string, "NaN") \ 222 V(nan_string, "NaN") \
223 V(source_string, "source") \ 223 V(source_string, "source") \
224 V(source_url_string, "source_url") \ 224 V(source_url_string, "source_url") \
225 V(source_mapping_url_string, "source_mapping_url") \ 225 V(source_mapping_url_string, "source_mapping_url") \
226 V(global_string, "global") \ 226 V(global_string, "global") \
227 V(ignore_case_string, "ignoreCase") \ 227 V(ignore_case_string, "ignoreCase") \
228 V(multiline_string, "multiline") \ 228 V(multiline_string, "multiline") \
229 V(sticky_string, "sticky") \ 229 V(sticky_string, "sticky") \
230 V(unicode_string, "unicode") \
230 V(harmony_regexps_string, "harmony_regexps") \ 231 V(harmony_regexps_string, "harmony_regexps") \
232 V(harmony_unicode_string, "harmony_unicode") \
231 V(input_string, "input") \ 233 V(input_string, "input") \
232 V(index_string, "index") \ 234 V(index_string, "index") \
233 V(last_index_string, "lastIndex") \ 235 V(last_index_string, "lastIndex") \
234 V(object_string, "object") \ 236 V(object_string, "object") \
235 V(prototype_string, "prototype") \ 237 V(prototype_string, "prototype") \
236 V(string_string, "string") \ 238 V(string_string, "string") \
237 V(String_string, "String") \ 239 V(String_string, "String") \
238 V(symbol_string, "symbol") \ 240 V(symbol_string, "symbol") \
239 V(Symbol_string, "Symbol") \ 241 V(Symbol_string, "Symbol") \
240 V(Map_string, "Map") \ 242 V(Map_string, "Map") \
(...skipping 2353 matching lines...) Expand 10 before | Expand all | Expand 10 after
2594 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 2596 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
2595 2597
2596 private: 2598 private:
2597 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2599 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2598 }; 2600 };
2599 #endif // DEBUG 2601 #endif // DEBUG
2600 } 2602 }
2601 } // namespace v8::internal 2603 } // namespace v8::internal
2602 2604
2603 #endif // V8_HEAP_HEAP_H_ 2605 #endif // V8_HEAP_HEAP_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698