Skip to content

Commit 2462e41

Browse files
committed
Remove unused variable
Removed unused `is_param` variable for symbol. Closes RustPython#1879
1 parent ca24283 commit 2462e41

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

compiler/src/symboltable.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@ pub struct Symbol {
9595
pub name: String,
9696
// pub table: SymbolTableRef,
9797
pub scope: SymbolScope,
98-
pub is_param: bool,
9998
pub is_referenced: bool,
10099
pub is_assigned: bool,
101100
pub is_parameter: bool,
@@ -108,7 +107,6 @@ impl Symbol {
108107
name: name.to_owned(),
109108
// table,
110109
scope: SymbolScope::Unknown,
111-
is_param: false,
112110
is_referenced: false,
113111
is_assigned: false,
114112
is_parameter: false,

0 commit comments

Comments
 (0)