1. 6d977c7 issue80: adding expected output for all javaparser code by Federico Tomassetti · 8 years ago
  2. cb7655f issue80: improving resolution of static methods by Federico Tomassetti · 8 years ago
  3. 474f3d7 coveralls: updating build files by Federico Tomassetti · 8 years ago
  4. 6bd7845 remove references to old JavaParser versions by Federico Tomassetti · 8 years ago
  5. cf23ae2 issue80: initial setup for testing method call resolution on JavaParser codebase by Federico Tomassetti · 8 years ago
  6. 4a934ae Merge pull request #78 from ftomassetti/issue77 by Federico Tomassetti · 8 years ago
  7. 34e7bd0 MethodDeclaration: add getSignature by Federico Tomassetti · 8 years ago
  8. bd5deb4 issue77: add qualified name to MethodDeclaration by Federico Tomassetti · 8 years ago
  9. db15c11 Merge pull request #76 from ftomassetti/issue75 by Federico Tomassetti · 8 years ago
  10. b5e2258 issue75: avoid infinite recursion when a class invoke its own methods by Federico Tomassetti · 8 years ago
  11. 661f8a0 Merge pull request #74 from ftomassetti/issue73 by Federico Tomassetti · 8 years ago
  12. 9055ed9 issue73: cache parse java files in JavaSymbolSolver by Federico Tomassetti · 8 years ago
  13. 163104d cleanup releasing instructions by Federico Tomassetti · 8 years ago
  14. 05d50ef Merge branch 'master' of github.com:ftomassetti/java-symbol-solver by Federico Tomassetti · 8 years ago
  15. b30b046 command to release the parent by Federico Tomassetti · 8 years ago
  16. 1906f4b implemented considering array type while inferring generic types by malte_langkabel · 8 years ago
  17. 5988c41 fixed solving method calls in FieldAccessContext and implemented test case. by malte_langkabel · 8 years ago
  18. 906f86a Merge pull request #72 from rpau/master by Federico Tomassetti · 8 years ago
  19. 84afc7b unused code removed by rpau · 8 years ago
  20. 01f3fa8 Regard type parameter of method's declaring type when testing if MethodUsage is applicable. by malte_langkabel · 8 years ago
  21. 856e158 Merge pull request #71 from ftomassetti/fix_tests_on_windows by Malte Langkabel · 8 years ago
  22. 85c68b4 update gradle configuration by Federico Tomassetti · 8 years ago
  23. cd78d3d * Fixed comparison of expected and generated output of the AnalyzeJavaParserTests for Windows. by malte_langkabel · 8 years ago
  24. e2cc24a Regard type parameter of method's declaring type when testing if method is applicable. Solves issue #67. by malte_langkabel · 8 years ago
  25. 6151a5f Resolving symbols declared in SuperInterfaces by malte_langkabel · 8 years ago
  26. 8eedafd Merge pull request #63 from mlangkabel/method_resolution_fixes by Malte Langkabel · 8 years ago
  27. 47cd1db changed comment to be a JavaDoc comment by malte_langkabel · 8 years ago
  28. 9d089f9 Merge pull request #65 from mlangkabel/solve_type_of_ClassExpr by Federico Tomassetti · 8 years ago
  29. 31433fc Implemented solving type of a ClassExpr. This fixes issue #64. by malte_langkabel · 8 years ago
  30. 72b00a3 added test by malte_langkabel · 8 years ago
  31. 325c0dc implemented method resolution check if parameters are compatible if expected is type variable and fixed index out of bounds exception in GenericTypeInferenceLogic by malte_langkabel · 8 years ago
  32. 6d47d81 move to version 0.4-SNAPSHOT by Federico Tomassetti · 8 years ago
  33. 0d24217 changing version to 0.3 by Federico Tomassetti · 8 years ago
  34. 57983e6 Merge pull request #59 from mlangkabel/fix_solving_this_type_in_enum_decl by Federico Tomassetti · 8 years ago
  35. 3d2adfa Merge pull request #58 from mlangkabel/fixed_endless_recursion by Federico Tomassetti · 8 years ago
  36. 112c53f Merge pull request #61 from mlangkabel/remove_most_applicable_method_duplicates by Federico Tomassetti · 8 years ago
  37. dfbc101 Implemented removing duplicate method entries in MethodResolutionLogic when trying to find the most applicable method. This fixes issue #60. by malte_langkabel · 8 years ago
  38. cb2a7ef implemented handling of EnumDeclaration in JavaParserFacade.getTypeOfThisIn(Node) and added tests. by malte_langkabel · 8 years ago
  39. d36b028 fixed StackOverflowError when solving call on method return type as described in issue #43 and implemented test for this case. by malte_langkabel · 8 years ago
  40. 30ae58b adapting JavaParserMethodDeclaration to use new JavaParser modifiers by Federico Tomassetti · 8 years ago
  41. c988d63 Merge branch 'master' of github.com:ftomassetti/java-symbol-solver by Federico Tomassetti · 8 years ago
  42. f7ce381 moving to javaslang 2.0.3 by Federico Tomassetti · 8 years ago
  43. 9c6ac2e Merge pull request #57 from ftomassetti/updating_javaparser by Federico Tomassetti · 8 years ago
  44. 5d25458 adapting for JavaParser 3.0.0-alpha.2 by Federico Tomassetti · 8 years ago
  45. 5785b78 Merge pull request #56 from mlangkabel/expanded_lambda_parameter_type_solving by Federico Tomassetti · 8 years ago
  46. 8b058a3 Changed author of LambdaExprContextTest.java :) by malte_langkabel · 8 years ago
  47. 2990933 updating to JavaParser 3.0.0-alpha.2 by Federico Tomassetti · 8 years ago
  48. e529ad5 expanded LambdaExprContext to solve lambda parameter types in contexts other than method calls and implemented tests for newly supported cases. by malte_langkabel · 8 years ago
  49. de1a818 Merge pull request #55 from mlangkabel/expand_JavaParserFacade by Federico Tomassetti · 8 years ago
  50. 2c3f615 added another fix and tests for method call on array access by malte_langkabel · 8 years ago
  51. b016881 added tests for access through super keyword by malte_langkabel · 8 years ago
  52. a541f77 Implemented solving method calls on ArrayAccessExpr and SuperExpr. This fixes issue #41. by malte_langkabel · 8 years ago
  53. f30e0f5 Merge pull request #52 from mlangkabel/JavaParserTypeSolver_support_internal_classes by Federico Tomassetti · 8 years ago
  54. ac259cd cleaned code by malte_langkabel · 8 years ago
  55. 9aedd5e add comment in Declaration by Federico Tomassetti · 8 years ago
  56. f81802b adding Design.MD by Federico Tomassetti · 8 years ago
  57. 2c2cc79 thanks contributors by Federico Tomassetti · 8 years ago
  58. 5114909 comment JavaParserFacade.clearInstances by Federico Tomassetti · 8 years ago
  59. fb2cc09 Merge branch 'master' of github.com:ftomassetti/java-symbol-solver by Federico Tomassetti · 8 years ago
  60. c059208 Merge pull request #49 from mlangkabel/JavaParserFacade_clearing by Federico Tomassetti · 8 years ago
  61. ad69321 Merge pull request #51 from mlangkabel/solve_symbol_in_field_access_context by Federico Tomassetti · 8 years ago
  62. 91ca35c Merge branch 'master' of github.com:ftomassetti/java-symbol-solver by Federico Tomassetti · 8 years ago
  63. 2e1a7d4 Merge pull request #50 from mlangkabel/implemented_get_declared_methods by Federico Tomassetti · 8 years ago
  64. c9d808d implemented methods according to issue #48 by malte_langkabel · 8 years ago
  65. 0778805 added support internal classes to JavaParserTypeSolver by malte_langkabel · 8 years ago
  66. 2254ab3 changed implementation to a more elegant solution by malte_langkabel · 8 years ago
  67. 3f8da95 change according to issue #45 by malte_langkabel · 8 years ago
  68. 1fe2b25 added method for clearing the instances of JavaParserFacade by malte_langkabel · 8 years ago
  69. a6f8e00 Merge pull request #39 from bassosimone/patch-2 by Federico Tomassetti · 8 years ago
  70. a3cb7da Merge branch 'master' of github.com:ftomassetti/java-symbol-solver by Federico Tomassetti · 8 years ago
  71. 1df8ac4 adding more tests by Federico Tomassetti · 8 years ago
  72. f9c81d2 README.md: s/instanting/instantiating/ by Simone Basso · 8 years ago
  73. 05cc676 Merge pull request #38 from bassosimone/patch-1 by Federico Tomassetti · 8 years ago
  74. cb99ae3 README.md: s/exaple/example/ by Simone Basso · 8 years ago
  75. ceb69ee adding one more test for getAllFields by Federico Tomassetti · 8 years ago
  76. 347067a Ensuring that Object is listed among the superclasses by Federico Tomassetti · 8 years ago
  77. 94f0179 Merge branch 'stackoverflow_fix' of git://github.com/matozoid/java-symbol-solver into matozoid-stackoverflow_fix by Federico Tomassetti · 8 years ago
  78. 3e02662 ignoring build directories by Federico Tomassetti · 8 years ago
  79. a63c6ce Stack overflow fix by matozoid · 8 years ago
  80. 5752b02 Move to SNAPSHOT version by matozoid · 8 years ago
  81. fe1157b adding releasing instructions by Federico Tomassetti · 8 years ago
  82. d675188 version 0.2 by Federico Tomassetti · 8 years ago
  83. 3913b34 removing rultor stuff by Federico Tomassetti · 8 years ago
  84. fc38587 removing rultor by Federico Tomassetti · 8 years ago
  85. 7cac77d change secret files by Federico Tomassetti · 8 years ago
  86. e982ca8 update paths in rultor conf by Federico Tomassetti · 8 years ago
  87. 72f9164 trying rultor by Federico Tomassetti · 8 years ago
  88. 33d2ca2 Merge branch 'master' of git://github.com/matozoid/java-symbol-solver into matozoid-master by Federico Tomassetti · 8 years ago
  89. 6b0100a wip by Federico Tomassetti · 8 years ago
  90. 81913d5 adding back poms by Federico Tomassetti · 8 years ago
  91. aeb97fc Add GetAllFields by matozoid · 8 years ago
  92. 48a1243 updating gradle wrapper version by Federico Tomassetti · 8 years ago
  93. af3957c restoring original javaparser source code by Federico Tomassetti · 8 years ago
  94. eba868a Merge pull request #29 from DevFactory/release/merge-if-with-enclosing-one-fix-1 by Federico Tomassetti · 8 years ago
  95. ba5fd53 Merge pull request #28 from DevFactory/release/replace-synchronized-classes-fix-1 by Federico Tomassetti · 8 years ago
  96. b9c2121 Merge pull request #23 from rpau/master by Federico Tomassetti · 8 years ago
  97. e34b0ac Merge pull request #27 from DevFactory/release/using-isempty-fix-1 by Federico Tomassetti · 8 years ago
  98. 5fb775b preventing travis to kill tests because of high memory consumption by Federico Tomassetti · 8 years ago
  99. aec7c24 gradle: adding debug flag by Federico Tomassetti · 8 years ago
  100. 53898ad making gradle more verbose by Federico Tomassetti · 8 years ago