Skip to content

Commit

Permalink
lua_ast.render: remove duplicate handling of LuaAssignment
Browse files Browse the repository at this point in the history
  • Loading branch information
StunxFS authored Jun 29, 2024
1 parent dc2eac8 commit c4c08f6
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions bsc/lua_ast/render.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,6 @@ def render_stmt(self, stmt):
self.render_stmts(stmt.stmts)
self.indent -= 1
self.writeln("end\n")
elif isinstance(stmt, LuaAssignment):
self.render_assign_stmt(stmt)
elif isinstance(stmt, LuaReturn):
self.write("return")
if stmt.expr != None:
Expand Down

0 comments on commit c4c08f6

Please sign in to comment.