mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-06 22:14:27 +08:00
instance and execution classes added
This commit is contained in:
102
evaluate.py
102
evaluate.py
@@ -30,6 +30,49 @@ class Arr(object):
|
|||||||
raise StopIteration
|
raise StopIteration
|
||||||
|
|
||||||
|
|
||||||
|
class Instance(object):
|
||||||
|
""" This class is used to evaluate instances. """
|
||||||
|
def __init__(self, cl):
|
||||||
|
self.cl = cl
|
||||||
|
|
||||||
|
def get_instance_vars(self):
|
||||||
|
"""
|
||||||
|
Get the instance vars of a class. This includes the vars of all
|
||||||
|
classes
|
||||||
|
"""
|
||||||
|
n = []
|
||||||
|
for s in self.cl.subscopes:
|
||||||
|
try:
|
||||||
|
# get the self name, if there's one
|
||||||
|
self_name = s.params[0].used_vars[0].names[0]
|
||||||
|
except:
|
||||||
|
pass
|
||||||
|
else:
|
||||||
|
for n2 in s.get_set_vars():
|
||||||
|
# Only names with the selfname are being added.
|
||||||
|
# It is also important, that they have a len() of 2,
|
||||||
|
# because otherwise, they are just something else
|
||||||
|
if n2.names[0] == self_name and len(n2.names) == 2:
|
||||||
|
n.append(n2)
|
||||||
|
n += self.cl.get_set_vars()
|
||||||
|
return n
|
||||||
|
|
||||||
|
|
||||||
|
class Execution(object):
|
||||||
|
""" This class is used to evaluate functions and their returns. """
|
||||||
|
def __init__(self, function):
|
||||||
|
self.cl = function
|
||||||
|
|
||||||
|
def get_return_vars(self):
|
||||||
|
"""
|
||||||
|
Get the instance vars of a class. This includes the vars of all
|
||||||
|
classes
|
||||||
|
"""
|
||||||
|
n = []
|
||||||
|
n += self.function.get_set_vars()
|
||||||
|
return n
|
||||||
|
|
||||||
|
|
||||||
def get_names_for_scope(scope):
|
def get_names_for_scope(scope):
|
||||||
""" Get all completions possible for the current scope. """
|
""" Get all completions possible for the current scope. """
|
||||||
compl = []
|
compl = []
|
||||||
@@ -41,6 +84,19 @@ def get_names_for_scope(scope):
|
|||||||
scope = scope.parent
|
scope = scope.parent
|
||||||
return compl
|
return compl
|
||||||
|
|
||||||
|
def get_scopes_for_name(scope, name, search_global=False):
|
||||||
|
"""
|
||||||
|
:return: List of Names. Their parents are the scopes, they are defined in.
|
||||||
|
:rtype: list
|
||||||
|
"""
|
||||||
|
if search_global:
|
||||||
|
names = get_names_for_scope(scope)
|
||||||
|
else:
|
||||||
|
names = scope.get_set_vars()
|
||||||
|
|
||||||
|
result = [c.parent for c in names if [name] == list(c.names)]
|
||||||
|
return result
|
||||||
|
|
||||||
|
|
||||||
# default: name in scope
|
# default: name in scope
|
||||||
# point: chaining
|
# point: chaining
|
||||||
@@ -50,12 +106,18 @@ def follow_statement(scope, stmt):
|
|||||||
print arr
|
print arr
|
||||||
|
|
||||||
path = arr.generate_call_list()
|
path = arr.generate_call_list()
|
||||||
|
if debug_function:
|
||||||
path, path_print = itertools.tee(path)
|
path, path_print = itertools.tee(path)
|
||||||
print '\n\ncalls:'
|
dbg('')
|
||||||
|
dbg('')
|
||||||
|
dbg('calls:')
|
||||||
for c in path_print:
|
for c in path_print:
|
||||||
print c
|
dbg(c)
|
||||||
|
|
||||||
|
dbg('')
|
||||||
|
dbg('')
|
||||||
|
dbg('follow:')
|
||||||
|
|
||||||
print '\n\nfollow'
|
|
||||||
current = next(path)
|
current = next(path)
|
||||||
result = []
|
result = []
|
||||||
if isinstance(current, parsing.Array):
|
if isinstance(current, parsing.Array):
|
||||||
@@ -71,7 +133,7 @@ def follow_statement(scope, stmt):
|
|||||||
elif current.arr_type == parsing.Array.DICT:
|
elif current.arr_type == parsing.Array.DICT:
|
||||||
result.append(__builtin__.dict())
|
result.append(__builtin__.dict())
|
||||||
else:
|
else:
|
||||||
print current
|
result = get_scopes_for_name(scope, current, search_global=True)
|
||||||
pass
|
pass
|
||||||
|
|
||||||
print result
|
print result
|
||||||
@@ -96,12 +158,36 @@ def follow_paths(path, results):
|
|||||||
return results_new
|
return results_new
|
||||||
|
|
||||||
|
|
||||||
def follow_path(path, result):
|
def follow_path(path, input):
|
||||||
current = next(path)
|
current = next(path)
|
||||||
#result = []
|
print 'follow', input, current
|
||||||
|
result = []
|
||||||
|
|
||||||
result = follow_paths(path, result)
|
if isinstance(current, parsing.Array):
|
||||||
return result
|
# this must be an execution, either () or []
|
||||||
|
if current.arr_type == parsing.Array.LIST:
|
||||||
|
print 'dini mami'
|
||||||
|
result = [] # TODO eval lists
|
||||||
|
else:
|
||||||
|
# input must be a class or func -> make an instance or execution
|
||||||
|
if isinstance(input, parsing.Class):
|
||||||
|
result.append(Instance(input))
|
||||||
|
else:
|
||||||
|
result.append(Execution(input))
|
||||||
|
else:
|
||||||
|
if isinstance(input, parsing.Function):
|
||||||
|
# TODO check default function methods and return them
|
||||||
|
result = []
|
||||||
|
else:
|
||||||
|
# TODO check default class methods and return them also
|
||||||
|
if isinstance(input, Instance):
|
||||||
|
result = input.get_instance_vars()
|
||||||
|
elif isinstance(input, Execution):
|
||||||
|
result = input.get_return_vars()
|
||||||
|
else:
|
||||||
|
result = get_scopes_for_name(input, current)
|
||||||
|
|
||||||
|
return follow_paths(path, result)
|
||||||
|
|
||||||
|
|
||||||
def follow_array(scope, array):
|
def follow_array(scope, array):
|
||||||
|
|||||||
@@ -178,6 +178,7 @@ def complete(source, row, column, file_callback=None):
|
|||||||
column = 17
|
column = 17
|
||||||
|
|
||||||
row = 140
|
row = 140
|
||||||
|
row = 144
|
||||||
column = 200
|
column = 200
|
||||||
f = File(source=source, row=row)
|
f = File(source=source, row=row)
|
||||||
scope = f.parser.user_scope
|
scope = f.parser.user_scope
|
||||||
|
|||||||
18
parsing.py
18
parsing.py
@@ -257,24 +257,6 @@ class Class(Scope):
|
|||||||
str += "pass\n"
|
str += "pass\n"
|
||||||
return str
|
return str
|
||||||
|
|
||||||
def get_instance_set_vars(self):
|
|
||||||
n = []
|
|
||||||
for s in self.subscopes:
|
|
||||||
try:
|
|
||||||
# get the self name, if there's one
|
|
||||||
self_name = s.params[0].used_vars[0].names[0]
|
|
||||||
except:
|
|
||||||
pass
|
|
||||||
else:
|
|
||||||
for n2 in s.get_set_vars():
|
|
||||||
# Only names with the selfname are being added.
|
|
||||||
# It is also important, that they have a len() of 2,
|
|
||||||
# because otherwise, they are just something else
|
|
||||||
if n2.names[0] == self_name and len(n2.names) == 2:
|
|
||||||
n.append(n2)
|
|
||||||
n += super(Class, self).get_set_vars()
|
|
||||||
return n
|
|
||||||
|
|
||||||
|
|
||||||
class Function(Scope):
|
class Function(Scope):
|
||||||
"""
|
"""
|
||||||
|
|||||||
Reference in New Issue
Block a user