summaryrefslogtreecommitdiffstats
path: root/chromium/v8/src/regexp/regexp-dotprinter.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/v8/src/regexp/regexp-dotprinter.cc')
-rw-r--r--chromium/v8/src/regexp/regexp-dotprinter.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chromium/v8/src/regexp/regexp-dotprinter.cc b/chromium/v8/src/regexp/regexp-dotprinter.cc
index b6640626f2c..7cf1e82c4d0 100644
--- a/chromium/v8/src/regexp/regexp-dotprinter.cc
+++ b/chromium/v8/src/regexp/regexp-dotprinter.cc
@@ -143,7 +143,7 @@ void DotPrinterImpl::VisitText(TextNode* that) {
if (node->is_negated()) os_ << "^";
for (int j = 0; j < node->ranges(zone)->length(); j++) {
CharacterRange range = node->ranges(zone)->at(j);
- os_ << AsUC16(range.from()) << "-" << AsUC16(range.to());
+ os_ << AsUC32(range.from()) << "-" << AsUC32(range.to());
}
os_ << "]";
break;