Skip to content

Commit 522034c

Browse files
authored
Merge pull request RustPython#1880 from HyeockJinKim/issue1879
Remove unused variable
2 parents e147d3e + 2462e41 commit 522034c

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)