Index: src/regexp/regexp-ast.h |
diff --git a/src/regexp/regexp-ast.h b/src/regexp/regexp-ast.h |
index ed91a82d4934bf4e3d81cd342b40a1eecf6f024e..5e6f8f45e7e011d1da1a2d413b3c2736d2d1d22f 100644 |
--- a/src/regexp/regexp-ast.h |
+++ b/src/regexp/regexp-ast.h |
@@ -311,7 +311,7 @@ class RegExpCharacterClass final : public RegExpTree { |
// d : ASCII digit |
// D : non-ASCII digit |
// . : non-unicode non-newline |
- // * : All characters |
+ // * : All characters, for advancing unanchored regexp |
uc16 standard_type() { return set_.standard_set_type(); } |
ZoneList<CharacterRange>* ranges(Zone* zone) { return set_.ranges(zone); } |
bool is_negated() { return is_negated_; } |