simplify default_var_exists
This commit is contained in:
parent
9b9946c0ee
commit
4f56096571
@ -90,11 +90,7 @@ impl Scope {
|
|||||||
|
|
||||||
pub fn default_var_exists(&mut self, s: Identifier) -> bool {
|
pub fn default_var_exists(&mut self, s: Identifier) -> bool {
|
||||||
if let Some(default_var) = self.get_var_no_err(s) {
|
if let Some(default_var) = self.get_var_no_err(s) {
|
||||||
if default_var.is_null() {
|
!default_var.is_null()
|
||||||
false
|
|
||||||
} else {
|
|
||||||
true
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
false
|
false
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user