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

Unified Diff: src/regexp/jsregexp.h

Issue 2452403003: Changed statement ZoneList to a ZoneChunkList
Patch Set: Created 4 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/parsing/rewriter.cc ('k') | src/regexp/regexp-ast.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/regexp/jsregexp.h
diff --git a/src/regexp/jsregexp.h b/src/regexp/jsregexp.h
index b2e84ba4f3a69a4b25861f600bd8da12f2d218fa..56488b90dd4268197bad23ed60e32d15d9b128b5 100644
--- a/src/regexp/jsregexp.h
+++ b/src/regexp/jsregexp.h
@@ -182,7 +182,7 @@ enum ElementInSetsRelation {
// A set of unsigned integers that behaves especially well on small
// integers (< 32). May do zone-allocation.
-class OutSet: public ZoneObject {
+class OutSet : public ZoneObject {
public:
OutSet() : first_(0), remaining_(NULL), successors_(NULL) { }
OutSet* Extend(unsigned value, Zone* zone);
@@ -429,8 +429,7 @@ class QuickCheckDetails {
extern int kUninitializedRegExpNodePlaceHolder;
-
-class RegExpNode: public ZoneObject {
+class RegExpNode : public ZoneObject {
public:
explicit RegExpNode(Zone* zone)
: replacement_(NULL), on_work_list_(false), trace_count_(0), zone_(zone) {
@@ -852,8 +851,7 @@ class NegativeSubmatchSuccess: public EndNode {
int clear_capture_start_;
};
-
-class Guard: public ZoneObject {
+class Guard : public ZoneObject {
public:
enum Relation { LT, GEQ };
Guard(int reg, Relation op, int value)
@@ -1082,7 +1080,6 @@ ContainedInLattice AddRange(ContainedInLattice a,
int ranges_size,
Interval new_range);
-
class BoyerMoorePositionInfo : public ZoneObject {
public:
explicit BoyerMoorePositionInfo(Zone* zone)
@@ -1119,7 +1116,6 @@ class BoyerMoorePositionInfo : public ZoneObject {
ContainedInLattice surrogate_; // Surrogate UTF-16 code units.
};
-
class BoyerMooreLookahead : public ZoneObject {
public:
BoyerMooreLookahead(int length, RegExpCompiler* compiler, Zone* zone);
« no previous file with comments | « src/parsing/rewriter.cc ('k') | src/regexp/regexp-ast.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698