Skip to content

Commit

Permalink
[vm] Correct printing of bools when printing precompiler entry points
Browse files Browse the repository at this point in the history
Change-Id: I80e6fdfc13d2ccf3dccf4c24d92c90b66868a81f
Reviewed-on: https://dart-review.googlesource.com/34026
Reviewed-by: Vyacheslav Egorov <vegorov@google.com>
Reviewed-by: Martin Kustermann <kustermann@google.com>
Commit-Queue: Alexander Markov <alexmarkov@google.com>
  • Loading branch information
alexmarkov authored and commit-bot@chromium.org committed Jan 11, 2018
1 parent 96381b7 commit eb9da14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/vm/compiler/aot/precompiler.cc
Original file line number Diff line number Diff line change
Expand Up @@ -777,7 +777,7 @@ void PrecompilerEntryPointsPrinter::Print() {
Class::Handle(Isolate::Current()->class_table()->At(result_cid));
DescribeClass(&writer, result_cls);

writer.PrintProperty("nullable", "false");
writer.PrintPropertyBool("nullable", false);

writer.CloseObject();
writer.CloseArray();
Expand Down

0 comments on commit eb9da14

Please sign in to comment.