blob: 7e5e563ce38e85e41ffb5bba14c0450abd1652a7 [file] [log] [blame]
/*
* Copyright 2016 Google Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef COBALT_SCRIPT_MOZJS_UTIL_EXCEPTION_HELPERS_H_
#define COBALT_SCRIPT_MOZJS_UTIL_EXCEPTION_HELPERS_H_
#include <string>
#include <vector>
#include "cobalt/script/stack_frame.h"
#include "third_party/mozjs/js/src/jsapi.h"
namespace cobalt {
namespace script {
namespace mozjs {
namespace util {
std::string GetExceptionString(JSContext* context);
std::string GetExceptionString(JSContext* context, JS::HandleValue exception);
std::vector<StackFrame> GetStackTrace(JSContext* context, int max_frames);
} // namespace util
} // namespace mozjs
} // namespace script
} // namespace cobalt
#endif // COBALT_SCRIPT_MOZJS_UTIL_EXCEPTION_HELPERS_H_