diff --git a/src/protocol/parser/symbol_table.rs b/src/protocol/parser/symbol_table.rs index 1e0b7cd6a6b1b9a74af356007f4d81690deba7aa..0d64b4d7d5515fa4c0c530f8dc43dff3d74f36b6 100644 --- a/src/protocol/parser/symbol_table.rs +++ b/src/protocol/parser/symbol_table.rs @@ -55,7 +55,6 @@ impl DefinitionClass { } struct ScopedSymbols { - scope: SymbolScope, parent_scope: Option, child_scopes: Vec, symbols: Vec, @@ -197,7 +196,6 @@ impl SymbolTable { } let scope = ScopedSymbols { - scope: new_scope, parent_scope, child_scopes: Vec::with_capacity(RESERVED_SYMBOLS), symbols: Vec::with_capacity(RESERVED_SYMBOLS)