blob: 1483ddfba21cdd4f90416475f67e9a9cf841e1ca [file] [log] [blame]
// Copyright 2016 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "lib/tonic/logging/dart_error.h"
#include "lib/ftl/logging.h"
namespace tonic {
namespace DartError {
const char kInvalidArgument[] = "Invalid argument.";
} // namespace DartError
bool LogIfError(Dart_Handle handle) {
if (Dart_IsError(handle)) {
FTL_LOG(ERROR) << Dart_GetError(handle);
return true;
}
return false;
}
DartErrorHandleType GetErrorHandleType(Dart_Handle handle) {
if (Dart_IsCompilationError(handle)) {
return kCompilationErrorType;
} else if (Dart_IsApiError(handle)) {
return kApiErrorType;
} else if (Dart_IsError(handle)) {
return kUnknownErrorType;
} else {
return kNoError;
}
}
} // namespace tonic