mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-23 12:43:08 +00:00
90982e0ccb
Also implement alternative simpler template system
62 lines
1.7 KiB
Rust
62 lines
1.7 KiB
Rust
use std::fmt::Display;
|
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
/// An error produced when interperting the rsx
|
|
#[derive(Debug, Serialize, Deserialize)]
|
|
pub enum Error {
|
|
ParseError(ParseError),
|
|
RecompileRequiredError(RecompileReason),
|
|
}
|
|
|
|
#[derive(Debug, Serialize, Deserialize)]
|
|
pub enum RecompileReason {
|
|
Variable(String),
|
|
Expression(String),
|
|
Component(String),
|
|
Listener(String),
|
|
Attribute(String),
|
|
}
|
|
|
|
#[derive(Debug, Serialize, Deserialize)]
|
|
pub struct CodeLocation {
|
|
pub line: u32,
|
|
pub column: u32,
|
|
pub file_path: &'static str,
|
|
}
|
|
|
|
#[derive(Debug, Serialize, Deserialize)]
|
|
pub struct ParseError {
|
|
pub message: String,
|
|
pub location: CodeLocation,
|
|
}
|
|
|
|
impl ParseError {
|
|
pub fn new(error: syn::Error, mut location: CodeLocation) -> Self {
|
|
let message = error.to_string();
|
|
let syn_call_site = error.span().start();
|
|
location.line += syn_call_site.line as u32;
|
|
if syn_call_site.line == 0 {
|
|
location.column += syn_call_site.column as u32;
|
|
} else {
|
|
location.column = syn_call_site.column as u32;
|
|
}
|
|
location.column += 1;
|
|
ParseError { message, location }
|
|
}
|
|
}
|
|
|
|
impl Display for Error {
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
match self {
|
|
Error::ParseError(error) => writeln!(
|
|
f,
|
|
"parse error:\n--> at {}:{}:{}\n\t{:?}",
|
|
error.location.file_path, error.location.line, error.location.column, error.message
|
|
),
|
|
Error::RecompileRequiredError(reason) => {
|
|
writeln!(f, "recompile required: {:?}", reason)
|
|
}
|
|
}
|
|
}
|
|
}
|