summaryrefslogtreecommitdiffstats
path: root/chromium/v8/src/regexp/regexp-ast.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/v8/src/regexp/regexp-ast.h')
-rw-r--r--chromium/v8/src/regexp/regexp-ast.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/chromium/v8/src/regexp/regexp-ast.h b/chromium/v8/src/regexp/regexp-ast.h
index a9106d3d304..643e1fc983f 100644
--- a/chromium/v8/src/regexp/regexp-ast.h
+++ b/chromium/v8/src/regexp/regexp-ast.h
@@ -76,9 +76,8 @@ class Interval {
int to_;
};
-
-// Represents code units in the range from from_ to to_, both ends are
-// inclusive.
+// Represents code points (with values up to 0x10FFFF) in the range from from_
+// to to_, both ends are inclusive.
class CharacterRange {
public:
CharacterRange() : from_(0), to_(0) {}