Merge pull request #1880 from HyeockJinKim/issue1879

Remove unused variable
This commit is contained in:
Jeong YunWon 2020-04-26 00:12:26 +09:00 committed by GitHub
commit a9ea22ec2b

View file

@ -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,