diff options
| author | Ben Bridle <bridle.benjamin@gmail.com> | 2025-11-26 19:13:45 +1300 |
|---|---|---|
| committer | Ben Bridle <bridle.benjamin@gmail.com> | 2025-11-26 19:22:13 +1300 |
| commit | 80ea0d650e3d8f56e43df21f1293b4ddccb89203 (patch) | |
| tree | 1dcd5a485dee43eb6844f6c3c1799f06690af992 /src/stages/compiler.rs | |
| parent | 20a029a3215d1e9816812c3484f65164b8faa613 (diff) | |
| download | torque-asm-80ea0d650e3d8f56e43df21f1293b4ddccb89203.zip | |
Remove semantic::ListLiteral::Invocation
This variant was never needed or constructed, I would have added it to
match the invocation variants of the block and integer tokens (which do
have a use).
Diffstat (limited to 'src/stages/compiler.rs')
| -rw-r--r-- | src/stages/compiler.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/stages/compiler.rs b/src/stages/compiler.rs index b4680c2..bc86589 100644 --- a/src/stages/compiler.rs +++ b/src/stages/compiler.rs @@ -252,9 +252,6 @@ impl SymbolParser { fn parse_list_token(&mut self, token: &ListToken, source: &SourceSpan) { match &token { - ListToken::Invocation(invocation) => { - self.parse_invocation(&invocation, source) - } ListToken::ListLiteral(integers) => { for integer in integers { self.parse_integer_token(&integer, source) |
