Commit b7311811 authored by jochen's avatar jochen Committed by Commit bot

Mark PromiseRejectMessage::GetStackTrace as deprecated

It's not used anywhere.

BUG=none
LOG=y
R=yangguo@chromium.org

Review URL: https://codereview.chromium.org/1477213002

Cr-Commit-Position: refs/heads/master@{#32348}
parent 7a918fb6
......@@ -4999,8 +4999,10 @@ class PromiseRejectMessage {
V8_INLINE PromiseRejectEvent GetEvent() const { return event_; }
V8_INLINE Local<Value> GetValue() const { return value_; }
// DEPRECATED. Use v8::Exception::CreateMessage(GetValue())->GetStackTrace()
V8_INLINE Local<StackTrace> GetStackTrace() const { return stack_trace_; }
V8_DEPRECATED("Use v8::Exception::CreateMessage(GetValue())->GetStackTrace()",
V8_INLINE Local<StackTrace> GetStackTrace() const) {
return stack_trace_;
}
private:
Local<Promise> promise_;
......
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