mirror of
https://github.com/servo/servo.git
synced 2025-08-03 20:50:07 +01:00
Issue warning to devtools when module scripts in use.
This commit is contained in:
parent
b3b72cb9e3
commit
55eb34b8a9
2 changed files with 30 additions and 0 deletions
|
@ -970,6 +970,29 @@ impl GlobalScope {
|
|||
self.devtools_chan.as_ref()
|
||||
}
|
||||
|
||||
pub fn issue_page_warning(&self, warning: &str) {
|
||||
if let Some(ref chan) = self.devtools_chan {
|
||||
let _ = chan.send(ScriptToDevtoolsControlMsg::ReportPageError(
|
||||
self.pipeline_id.clone(),
|
||||
PageError {
|
||||
type_: "PageError".to_string(),
|
||||
errorMessage: warning.to_string(),
|
||||
sourceName: self.get_url().to_string(),
|
||||
lineText: "".to_string(),
|
||||
lineNumber: 0,
|
||||
columnNumber: 0,
|
||||
category: "script".to_string(),
|
||||
timeStamp: 0, //TODO
|
||||
error: false,
|
||||
warning: true,
|
||||
exception: true,
|
||||
strict: false,
|
||||
private: false,
|
||||
},
|
||||
));
|
||||
}
|
||||
}
|
||||
|
||||
/// Get a sender to the memory profiler thread.
|
||||
pub fn mem_profiler_chan(&self) -> &profile_mem::ProfilerChan {
|
||||
&self.mem_profiler_chan
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue