Remove _hy_anon_fn_N in favor of _hy_anon_var_N
This commit is contained in:
parent
cf7ff802c9
commit
957a721cd4
@ -380,7 +380,6 @@ class HyASTCompiler(object):
|
|||||||
|
|
||||||
def __init__(self, module_name):
|
def __init__(self, module_name):
|
||||||
self.allow_builtins = module_name.startswith("hy.core")
|
self.allow_builtins = module_name.startswith("hy.core")
|
||||||
self.anon_fn_count = 0
|
|
||||||
self.anon_var_count = 0
|
self.anon_var_count = 0
|
||||||
self.imports = defaultdict(set)
|
self.imports = defaultdict(set)
|
||||||
self.module_name = module_name
|
self.module_name = module_name
|
||||||
@ -393,10 +392,6 @@ class HyASTCompiler(object):
|
|||||||
self.anon_var_count += 1
|
self.anon_var_count += 1
|
||||||
return "_hy_anon_var_%s" % self.anon_var_count
|
return "_hy_anon_var_%s" % self.anon_var_count
|
||||||
|
|
||||||
def get_anon_fn(self):
|
|
||||||
self.anon_fn_count += 1
|
|
||||||
return "_hy_anon_fn_%d" % self.anon_fn_count
|
|
||||||
|
|
||||||
def update_imports(self, result):
|
def update_imports(self, result):
|
||||||
"""Retrieve the imports from the result object"""
|
"""Retrieve the imports from the result object"""
|
||||||
for mod in result.imports:
|
for mod in result.imports:
|
||||||
@ -1947,7 +1942,7 @@ class HyASTCompiler(object):
|
|||||||
if not body.stmts:
|
if not body.stmts:
|
||||||
body += asty.Pass(expression)
|
body += asty.Pass(expression)
|
||||||
|
|
||||||
name = self.get_anon_fn()
|
name = self.get_anon_var()
|
||||||
|
|
||||||
ret += asty.FunctionDef(expression,
|
ret += asty.FunctionDef(expression,
|
||||||
name=name,
|
name=name,
|
||||||
|
Loading…
Reference in New Issue
Block a user