Skipping over pseudo contexts has fixed most of the tests.

This commit is contained in:
Tom Alexander
2020-05-30 11:50:55 -04:00
parent f04e84dc31
commit 3c9a369908
4 changed files with 46 additions and 11 deletions

View File

@@ -103,6 +103,10 @@ impl Walkable for ParametersContext {
OwnedRValue::RVLiteral(literal) => Ok(literal),
}
}
fn is_pseudo_element(&self) -> bool {
true
}
}
impl Clone for ParametersContext {