changed macro to ignore empty trees and made compiler do the substitution work

This commit is contained in:
Guillermo Vaya 2013-06-26 02:20:15 +02:00 committed by Nicolas Dandrimont
parent 4c7b4f70e3
commit 482282178c
2 changed files with 3 additions and 4 deletions

View File

@ -1421,6 +1421,8 @@ class HyASTCompiler(object):
@builds(HyExpression)
def compile_expression(self, expression):
if expression == []:
return self.compile_list(expression)
fn = expression[0]
func = None
if isinstance(fn, HyKeyword):

View File

@ -71,10 +71,7 @@ _wrappers = {
def process(tree, module_name):
if isinstance(tree, HyExpression):
if tree == []:
# set value to []
ntree = HyList()
ntree.replace(tree)
return ntree
return tree
fn = tree[0]
if fn in ("quote", "quasiquote"):