Remove _hy_anon_fn_N in favor of _hy_anon_var_N

This commit is contained in:
Kodi Arfer 2017-08-26 10:43:21 -07:00
parent cf7ff802c9
commit 957a721cd4

View File

@ -380,7 +380,6 @@ class HyASTCompiler(object):
def __init__(self, module_name):
self.allow_builtins = module_name.startswith("hy.core")
self.anon_fn_count = 0
self.anon_var_count = 0
self.imports = defaultdict(set)
self.module_name = module_name
@ -393,10 +392,6 @@ class HyASTCompiler(object):
self.anon_var_count += 1
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):
"""Retrieve the imports from the result object"""
for mod in result.imports:
@ -1947,7 +1942,7 @@ class HyASTCompiler(object):
if not body.stmts:
body += asty.Pass(expression)
name = self.get_anon_fn()
name = self.get_anon_var()
ret += asty.FunctionDef(expression,
name=name,