A first implementation of call signatures.

This commit is contained in:
Dave Halter
2014-12-05 16:05:54 +01:00
parent ab254bbcba
commit 24903739f2
6 changed files with 22 additions and 16 deletions

View File

@@ -112,7 +112,7 @@ def cache_call_signatures(evaluator, call, source, user_pos, stmt):
module_path = stmt.get_parent_until().path
yield None if module_path is None else (module_path, before_bracket, stmt.start_pos)
yield evaluator.eval_call(call)
yield evaluator.eval_element(call)
def underscore_memoization(func):