You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 27, 2022. It is now read-only.
In the Trace Event Format Google Docs, it states that we can put a stack array in duration or complete trace events, just like this:
"stack" : ["string1", "string2", "string3"]
but when I add this into my trace events, and import the json file into the web page, I get this error:
'TypeError: this.model_.resolveStackToStackFrame_ is not a function
at TraceEventImporter.getStackFrameForEvent_ (chrome://tracing/tracing.js:4752:42)
After checking this function on the repo, it seems like the function hasn't been completed yet and returns undefined.
resolveStackToStackFrame_(pid, stack) {
// TODO(alph,fmeawad): Add codemap resolution code here.
return undefined;
}
Just wanted to know if you guys were planning on implementing it soon, and if not, maybe remove it from the google docs for now?
The text was updated successfully, but these errors were encountered: