mirror of
https://github.com/RustPython/Parser.git
synced 2025-07-14 16:45:25 +00:00
Merge pull request #1880 from HyeockJinKim/issue1879
Remove unused variable
This commit is contained in:
commit
a9ea22ec2b
1 changed files with 0 additions and 2 deletions
|
@ -95,7 +95,6 @@ pub struct Symbol {
|
||||||
pub name: String,
|
pub name: String,
|
||||||
// pub table: SymbolTableRef,
|
// pub table: SymbolTableRef,
|
||||||
pub scope: SymbolScope,
|
pub scope: SymbolScope,
|
||||||
pub is_param: bool,
|
|
||||||
pub is_referenced: bool,
|
pub is_referenced: bool,
|
||||||
pub is_assigned: bool,
|
pub is_assigned: bool,
|
||||||
pub is_parameter: bool,
|
pub is_parameter: bool,
|
||||||
|
@ -108,7 +107,6 @@ impl Symbol {
|
||||||
name: name.to_owned(),
|
name: name.to_owned(),
|
||||||
// table,
|
// table,
|
||||||
scope: SymbolScope::Unknown,
|
scope: SymbolScope::Unknown,
|
||||||
is_param: false,
|
|
||||||
is_referenced: false,
|
is_referenced: false,
|
||||||
is_assigned: false,
|
is_assigned: false,
|
||||||
is_parameter: false,
|
is_parameter: false,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue