Definition at line 25 of file graph-visualizer.cc.
◆ Escaped()
v8::internal::compiler::Escaped::Escaped |
( |
const OStringStream & |
os, |
|
|
const char * |
escaped_chars = "<>|{}" |
|
) |
| |
|
inlineexplicit |
Definition at line 27 of file graph-visualizer.cc.
28 : str_(os.c_str()), escaped_chars_(escaped_chars) {}
◆ needs_escape()
bool v8::internal::compiler::Escaped::needs_escape |
( |
char |
ch | ) |
const |
|
inlineprivate |
◆ operator<<
Definition at line 30 of file graph-visualizer.cc.
31 for (
const char* s = e.str_; *s !=
'\0'; ++s) {
32 if (e.needs_escape(*s)) os <<
"\\";
◆ escaped_chars_
const char* const v8::internal::compiler::Escaped::escaped_chars_ |
|
private |
◆ str_
const char* const v8::internal::compiler::Escaped::str_ |
|
private |
The documentation for this class was generated from the following file: