grass_compiler/ast/unknown.rs
1use crate::ast::CssStmt;
2
3#[derive(Debug, Clone)]
4#[allow(dead_code)]
5pub(crate) struct UnknownAtRule {
6 pub name: String,
7 // pub super_selector: Selector,
8 pub params: String,
9 pub body: Vec<CssStmt>,
10
11 /// Whether or not this @-rule was declared with curly
12 /// braces. A body may not necessarily have contents
13 pub has_body: bool,
14}