110 timing: Vec<TimingEntry>,
111 },
112▶ /// A fatal error occurred and panicThreshold dictates it should throw.
113 Error {
114 error: CompilerErrorInfo,
· · ·
113▶ Error {
114 error: CompilerErrorInfo,
115 events: Vec<LoggerEvent>,
· · ·
114▶ error: CompilerErrorInfo,
115 events: Vec<LoggerEvent>,
116 #[serde(rename = "orderedLog", skip_serializing_if = "Vec::is_empty")]
· · ·
130}
131
132▶/// Structured error information for the JS shim.
133#[derive(Debug, Clone, Serialize)]
134pub struct CompilerErrorInfo {
· · ·
134▶pub struct CompilerErrorInfo {
135 pub reason: String,
136 #[serde(skip_serializing_if = "Option::is_none")]
+ 20 more matches in this file