Fixed imports, and restructured ifs to be "code blocks"

This commit is contained in:
Darryl Pogue
2010-09-07 21:32:34 -07:00
parent 814475960e
commit 90bfaad7d0
3 changed files with 95 additions and 107 deletions

View File

@@ -4,8 +4,8 @@
#include "ASTNode.h"
PycRef<ASTNode> BuildFromCode(PycRef<PycCode> code, PycModule* mod);
void print_src(PycRef<ASTNode> node, PycModule* mod, int indent);
void print_src(PycRef<ASTNode> node, PycModule* mod);
void decompyle(PycRef<PycCode> code, PycModule* mod, int indent = 0);
void decompyle(PycRef<PycCode> code, PycModule* mod);
#endif