| 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);
|
|
|