blob: 894966fa41cc40f3821f481d6de1e7bf12cd0330 [file] [log] [blame]
// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
#include "vm/timer.h"
#include "platform/globals.h"
#include "vm/json_stream.h"
#include "vm/thread.h"
namespace dart {
PrintTimeScope::~PrintTimeScope() {
timer_.Stop();
OS::PrintErr("%s %s\n", name_,
timer_.FormatElapsedHumanReadable(Thread::Current()->zone()));
}
} // namespace dart