We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
# Cargo.toml [dependencies] lightningcss = { version = "=1.0.0-alpha.58", features = [ "sourcemap", "browserslist", "visitor", "into_owned", ] }
// main.rs use lightningcss::stylesheet::{ParserFlags, ParserOptions, StyleSheet}; fn main() { let code = "h1 { left: calc(100% - 16px - 0);}"; let flag = ParserFlags::empty(); let options = ParserOptions { filename: "abc".to_string(), css_modules: None, source_index: 0, error_recovery: false, warnings: None, flags: flag, }; let style_sheet = StyleSheet::parse(code, options).unwrap(); }
It occur system error: fatal runtime error: stack overflow, when cargo run
The text was updated successfully, but these errors were encountered:
Fixed by: #832
Sorry, something went wrong.
e3c8e12
Successfully merging a pull request may close this issue.
It occur system error: fatal runtime error: stack overflow, when cargo run
The text was updated successfully, but these errors were encountered: