Skip to content

Commit

Permalink
Add an another lazy if
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrian Nord authored and Andrian Nord committed Jan 24, 2014
1 parent cf78bd9 commit 80fafd5
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,13 +105,14 @@ def main():

# ljd.ast.validator.validate(ast, warped=False)

ljd.ast.locals.mark_local_definitions(ast)
if True:
ljd.ast.locals.mark_local_definitions(ast)

# ljd.ast.validator.validate(ast, warped=False)
# ljd.ast.validator.validate(ast, warped=False)

ljd.ast.mutator.primary_pass(ast)
ljd.ast.mutator.primary_pass(ast)

ljd.ast.validator.validate(ast, warped=False)
ljd.ast.validator.validate(ast, warped=False)

ljd.lua.writer.write(sys.stdout, ast)

Expand Down

0 comments on commit 80fafd5

Please sign in to comment.