Rename scope_changed to scope_may_be_changed.

This commit is contained in:
Stephen Chung
2021-07-04 16:31:01 +08:00
parent b4da054bab
commit ab21ba703f
3 changed files with 10 additions and 10 deletions

View File

@@ -1394,7 +1394,7 @@ pub struct CustomExpr {
/// List of keywords.
pub keywords: StaticVec<Expr>,
/// Is the current [`Scope`][crate::Scope] modified?
pub scope_changed: bool,
pub scope_may_be_changed: bool,
/// List of tokens actually parsed.
pub tokens: StaticVec<Identifier>,
}