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

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

Issue 580383003: Reland sticky regexps https://codereview.chromium.org/567313003/ (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « src/flag-definitions.h ('k') | src/jsregexp.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 269 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 V(null_string, "null") \ 280 V(null_string, "null") \
281 V(number_string, "number") \ 281 V(number_string, "number") \
282 V(Number_string, "Number") \ 282 V(Number_string, "Number") \
283 V(nan_string, "NaN") \ 283 V(nan_string, "NaN") \
284 V(source_string, "source") \ 284 V(source_string, "source") \
285 V(source_url_string, "source_url") \ 285 V(source_url_string, "source_url") \
286 V(source_mapping_url_string, "source_mapping_url") \ 286 V(source_mapping_url_string, "source_mapping_url") \
287 V(global_string, "global") \ 287 V(global_string, "global") \
288 V(ignore_case_string, "ignoreCase") \ 288 V(ignore_case_string, "ignoreCase") \
289 V(multiline_string, "multiline") \ 289 V(multiline_string, "multiline") \
290 V(sticky_string, "sticky") \
291 V(harmony_regexps_string, "harmony_regexps") \
290 V(input_string, "input") \ 292 V(input_string, "input") \
291 V(index_string, "index") \ 293 V(index_string, "index") \
292 V(last_index_string, "lastIndex") \ 294 V(last_index_string, "lastIndex") \
293 V(object_string, "object") \ 295 V(object_string, "object") \
294 V(prototype_string, "prototype") \ 296 V(prototype_string, "prototype") \
295 V(string_string, "string") \ 297 V(string_string, "string") \
296 V(String_string, "String") \ 298 V(String_string, "String") \
297 V(symbol_string, "symbol") \ 299 V(symbol_string, "symbol") \
298 V(Symbol_string, "Symbol") \ 300 V(Symbol_string, "Symbol") \
299 V(Map_string, "Map") \ 301 V(Map_string, "Map") \
(...skipping 2190 matching lines...) Expand 10 before | Expand all | Expand 10 after
2490 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 2492 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
2491 2493
2492 private: 2494 private:
2493 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2495 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2494 }; 2496 };
2495 #endif // DEBUG 2497 #endif // DEBUG
2496 } 2498 }
2497 } // namespace v8::internal 2499 } // namespace v8::internal
2498 2500
2499 #endif // V8_HEAP_HEAP_H_ 2501 #endif // V8_HEAP_HEAP_H_
OLDNEW
« no previous file with comments | « src/flag-definitions.h ('k') | src/jsregexp.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698