Allow regular expressions to be "printed".
This commit is contained in:
parent
72b04f69e5
commit
47725095da
1 changed files with 4 additions and 0 deletions
|
|
@ -1663,6 +1663,10 @@ void value_t::print(std::ostream& out,
|
||||||
out << as_string();
|
out << as_string();
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case MASK:
|
||||||
|
out << '/' << as_mask() << '/';
|
||||||
|
break;
|
||||||
|
|
||||||
case SEQUENCE: {
|
case SEQUENCE: {
|
||||||
out << '(';
|
out << '(';
|
||||||
bool first = true;
|
bool first = true;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue