pub trait Skippable<'arena>: WithDirectives<'arena> {
// Provided method
fn should_include(
&'arena self,
variables: Option<&Variables<'arena>>,
) -> bool { ... }
}
Expand description
Trait implemented by all AST nodes that can be skipped via standard skip/include directives.