Commit 931ac008 authored by georgia.kouveli's avatar georgia.kouveli Committed by Commit bot

Fix uninitialized member (isolate_) in AstPrinter.

BUG=

Review-Url: https://codereview.chromium.org/2245323005
Cr-Commit-Position: refs/heads/master@{#38690}
parent a3c13435
......@@ -596,7 +596,7 @@ class IndentedScope BASE_EMBEDDED {
//-----------------------------------------------------------------------------
AstPrinter::AstPrinter(Isolate* isolate)
: output_(nullptr), size_(0), pos_(0), indent_(0) {
: isolate_(isolate), output_(nullptr), size_(0), pos_(0), indent_(0) {
InitializeAstVisitor(isolate);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment