Commit Graph

2207 Commits

Author SHA1 Message Date
Dave Halter
6ece1de22d move some imports around 2013-12-30 01:49:01 +01:00
Dave Halter
7b936cf6ec move dynamic array stuff to evaluate.iterable 2013-12-30 01:38:15 +01:00
Dave Halter
e4692381cb created evaluate.iterable to push arrays and generators into a seperate file 2013-12-30 01:02:18 +01:00
Dave Halter
8561217333 evaluator executions instead of direct instances 2013-12-29 19:40:45 +01:00
Dave Halter
0f6b5b222b add a stdlib module to make it easy to write functions in pure python (instead of evaluating them) 2013-12-29 03:05:05 +01:00
Dave Halter
4215e7934e basic refactoring, of function executions super() is not working yet 2013-12-29 02:05:37 +01:00
Dave Halter
870f5da354 use execute method instead of Execution creators 2013-12-28 21:21:15 +01:00
Dave Halter
37e157d441 improve follow_path params 2013-12-28 20:56:09 +01:00
Dave Halter
75a1b6f8cb follow_paths -> follow_path, follow_path -> _follow_path 2013-12-28 15:00:04 +01:00
Dave Halter
46dd0a9abe follow_call_path -> eval_call_path 2013-12-27 14:40:23 +01:00
Dave Halter
91f377eeb6 pep8 stylings 2013-12-27 14:35:30 +01:00
Dave Halter
7347c46502 expression_list instead of commands in more places 2013-12-27 14:32:15 +01:00
Dave Halter
4af92b166a use expression_list instead of commands or call_list 2013-12-27 14:24:14 +01:00
Dave Halter
76eec7bfc5 follow_call -> eval_call 2013-12-27 12:02:49 +01:00
Dave Halter
eb30c3e6cf follow_statement -> eval_statement 2013-12-27 11:55:35 +01:00
Dave Halter
b7958b32a3 Merge pull request #360 from davidhalter/evaluator
Refactoring: Use an Evaluator class.
2013-12-26 17:49:00 -08:00
Dave Halter
d40030c14e disable a test for py26. 2013-12-27 02:40:52 +01:00
Dave Halter
08fba1e191 fix last remaining issues with tests 2013-12-27 02:28:01 +01:00
Dave Halter
4ec64a9763 move mixin to evaluate directory 2013-12-27 01:36:05 +01:00
Dave Halter
c290afbb1a increase pickling version and change mixin path for builtins 2013-12-27 01:34:23 +01:00
Dave Halter
40bd118acb fix sys path tests 2013-12-27 01:30:22 +01:00
Dave Halter
c862afb967 fix a few nasty bugs 2013-12-27 01:27:07 +01:00
Dave Halter
ff983f70bc fix execution recursion decorators 2013-12-26 18:01:54 +01:00
Dave Halter
dd7d7ceb7e make some parser caches private 2013-12-26 12:20:29 +01:00
Dave Halter
84c2be9f58 remove old way of using a separate decorator for search param memoization, use the default one 2013-12-26 02:32:32 +01:00
Dave Halter
8f564a301f clean up caches clearing 2013-12-26 02:10:30 +01:00
Dave Halter
947e616da0 hand api classes the evaluator 2013-12-26 01:00:37 +01:00
Dave Halter
4aa8be7829 include jedi.evaluate as a package in setup.py 2013-12-25 19:08:28 +01:00
Dave Halter
05f7e6f4b5 import changes so that all local imports are 'from jedi.* import *' 2013-12-25 18:48:12 +01:00
Dave Halter
002b7001ca pass more than half of the integration tests, more bugfixes 2013-12-25 18:38:23 +01:00
Dave Halter
f039bc3fc9 fix docstrings with evaluator stuff 2013-12-25 18:31:42 +01:00
Dave Halter
d86f180d2e bug fixes for dynamic/iterator stuff 2013-12-25 18:28:56 +01:00
Dave Halter
5d486f0e3c fix a lot of the dynamic issues 2013-12-25 18:16:40 +01:00
Dave Halter
b768e214eb fix cache memoization 2013-12-25 15:19:12 +01:00
Dave Halter
4cf5d56b64 fix more issues and renamings 2013-12-25 03:24:12 +01:00
Dave Halter
ef764d39d8 evaluator stuff for dynamic 2013-12-25 01:54:51 +01:00
Dave Halter
dd804dc4cb move the usages stuff away from dynamic 2013-12-24 22:54:03 +01:00
Dave Halter
3c28b1907c dynamic belongs also into the evaluate folder 2013-12-24 22:49:57 +01:00
Dave Halter
8326658134 more improvements, so that almost all import tests pass again 2013-12-24 19:55:11 +01:00
Dave Halter
9e52d51a6b use filter_private_variable correctly in api 2013-12-24 19:50:53 +01:00
Dave Halter
39ed0d0f8a most evaluate representation classes probably receive the evaluator instance now 2013-12-24 19:47:52 +01:00
Dave Halter
85a12e8866 RecursionDecorator now also works with Evaluator caches 2013-12-24 19:14:14 +01:00
Dave Halter
118ed2e0a3 RecursionNode should be public 2013-12-24 18:49:15 +01:00
Dave Halter
ab2c6bf45d integrate memoize caches into evaluator 2013-12-24 18:46:51 +01:00
Dave Halter
066056fb2b memoize_default should always take a first argument 2013-12-24 18:06:15 +01:00
Dave Halter
56457a9c8c ImportPath has now also an _evaluator 2013-12-24 18:00:00 +01:00
Dave Halter
d25cc6e1fe it should be _evaluator not evaluator 2013-12-24 17:52:01 +01:00
Dave Halter
eedadbfe95 temporary interfaces subclass. let's see if we need to keep it 2013-12-24 17:27:06 +01:00
Dave Halter
cd8880d8ef move recursion.py to evaluate folder 2013-12-24 17:19:07 +01:00
Dave Halter
cf4b2c4557 the whole import thing seems to be working 2013-12-24 16:28:28 +01:00