Fix uninitialized member (isolate_) in AstPrinter.
BUG= Review-Url: https://codereview.chromium.org/2245323005 Cr-Commit-Position: refs/heads/master@{#38690}
This commit is contained in:
parent
a3c13435aa
commit
931ac008bb
@ -596,7 +596,7 @@ class IndentedScope BASE_EMBEDDED {
|
|||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
|
|
||||||
AstPrinter::AstPrinter(Isolate* isolate)
|
AstPrinter::AstPrinter(Isolate* isolate)
|
||||||
: output_(nullptr), size_(0), pos_(0), indent_(0) {
|
: isolate_(isolate), output_(nullptr), size_(0), pos_(0), indent_(0) {
|
||||||
InitializeAstVisitor(isolate);
|
InitializeAstVisitor(isolate);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user