mirror of
https://github.com/RustPython/Parser.git
synced 2025-07-15 17:15:24 +00:00
Remove unused variable
Removed unused `is_param` variable for symbol. Closes RustPython#1879
This commit is contained in:
parent
1e12aa8afe
commit
e85baf4dfb
1 changed files with 0 additions and 2 deletions
|
@ -95,7 +95,6 @@ pub struct Symbol {
|
|||
pub name: String,
|
||||
// pub table: SymbolTableRef,
|
||||
pub scope: SymbolScope,
|
||||
pub is_param: bool,
|
||||
pub is_referenced: bool,
|
||||
pub is_assigned: bool,
|
||||
pub is_parameter: bool,
|
||||
|
@ -108,7 +107,6 @@ impl Symbol {
|
|||
name: name.to_owned(),
|
||||
// table,
|
||||
scope: SymbolScope::Unknown,
|
||||
is_param: false,
|
||||
is_referenced: false,
|
||||
is_assigned: false,
|
||||
is_parameter: false,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue