Sign in
chromium
/
external
/
github.com
/
c2nes
/
javalang
/
HEAD
5669635
Preserve selectors on paren primary
by Chris Thunes
· 4 years, 3 months ago
master
0664afb
Release 0.13.0
by Chris Thunes
· 6 years ago
v0.13.0
5c99f43
Merge pull request #71 from Amar1729/patch-1
by Chris Thunes
· 6 years ago
c42c27c
Update .travis.yml
by Amar Paul
· 6 years ago
8265e22
Merge pull request #70 from Gargarensis/master
by Chris Thunes
· 6 years ago
6d5290d
Adds _position field to many entities of the Java language
by Riccardo Gabriele
· 6 years ago
f98ffcb
Raise LexerError on unterminated block comment
by Chris Thunes
· 7 years ago
ab5af41
Merge pull request #62 from ggazzi/issue-61
by Chris Thunes
· 7 years ago
8387457
Fix issue #61
by Guilherme G. Azzi
· 7 years ago
7a4af7f
Add badge for PyPI.
by Chris Thunes
· 7 years ago
68e8bd6
Release 0.12.0.
by Chris Thunes
· 7 years ago
v0.12.0
49337f8
Make AST repr more detailed.
by Chris Thunes
· 7 years ago
f507330
Add additional tests for multiline comment handling.
by Chris Thunes
· 7 years ago
dd98671
Fix column calculation when a comment does not end in a newline.
by Chris Thunes
· 7 years ago
ff5d925
Make a namedtuple for token position.
by Chris Thunes
· 7 years ago
5ed1a30
Fix off-by-one bug in column numbers for the first line.
by Chris Thunes
· 7 years ago
5ee16f6
Merge pull request #55 from bloriot97/position-patch
by Chris Thunes
· 7 years ago
c016992
Better patch
by Benjamin Loriot
· 7 years ago
d4deb09
Better test case for issue #54
by Benjamin Loriot
· 7 years ago
1d6ba16
Test case for the token position after comment
by Benjamin Loriot
· 7 years ago
4da7ac7
Fix an issue on the token's positions of a line following a comment
by Benjamin Loriot
· 7 years ago
5838927
Merge pull request #51 from cassianomonteiro/master
by Chris Thunes
· 8 years ago
bc71746
Storing errors in a list.
by Cassiano Monteiro
· 8 years ago
7665435
Moved ignore_errors to JavaTokenizer constructor.
by Cassiano Monteiro
· 8 years ago
acc7ed6
Fixed more indexing errors in read_decimal_float_or_integer and read_hex_integer_or_float.
by Cassiano Monteiro
· 8 years ago
1664d3f
Fix error with string delimiter within comment.
by Cassiano Monteiro
· 8 years ago
a10d24f
Fix error with integer number at the end of line.
by Cassiano Monteiro
· 8 years ago
dd58acc
Fix error with period at the end of line.
by Cassiano Monteiro
· 8 years ago
d8203ad
Option to ignore errors on tokenization. Useful when parsing snippets of code instead of complete block/files.
by Cassiano Monteiro
· 8 years ago
a6f23dd
Merge pull request #50 from cassianomonteiro/master
by Chris Thunes
· 8 years ago
331707e
Fix IndexError when reading identifier at the end of a line (happens with with annotation token).
by Cassiano Monteiro
· 8 years ago
343eeab
Remove extraneous -m flag
by Chris Thunes
· 8 years ago
757bf47
Merge pull request #48 from tonyroberts/master
by Chris Thunes
· 8 years ago
f62f2fc
Fix fields and methods properties on EnumDeclaration
by Tony Roberts
· 8 years ago
5b5f764
Release version 0.11.0.
by Chris Thunes
· 9 years ago
javalang-0.11.0
04d0188
Merge pull request #38 from johnhawes/master
by Chris Thunes
· 9 years ago
1b39353
Add position information to nodes
by johnhawes
· 9 years ago
95a78c4
Release version 0.10.2.
by Chris Thunes
· 9 years ago
javalang-0.10.2
b680bb8
Add gitignore entries.
by Chris Thunes
· 9 years ago
180d049
Update README to mention support being updated to Java 8.
by Chris Thunes
· 9 years ago
3dec5f8
Merge remote-tracking branch 'shoaniki/java8'
by Chris Thunes
· 9 years ago
7e16c02
Merge pull request #31 from roipoussiere/interfaces_body
by Chris Thunes
· 9 years ago
7fa9395
Set body to None by default when parsing interfaces.
by Nathanaël Jourdane
· 9 years ago
e87a11a
Allow interfaces to have an optional body, fix #30.
by Nathanaël Jourdane
· 9 years ago
b32fd63
Release version 0.10.1.
by Chris Thunes
· 9 years ago
javalang-0.10.1
bc02ec7
Include the "default" keyword in the modifier set.
by Chris Thunes
· 9 years ago
70b978c
Add Travis CI badge to README.
by Chris Thunes
· 10 years ago
e1ffbd2
Fix attribute names for prefix/postfix operators.
by Chris Thunes
· 10 years ago
43dde31
Merge pull request #28 from sandeshc/master
by Chris Thunes
· 10 years ago
7ee43f9
SuperMethodInvocation for empty args, misregarded as SuperMemberReference is now fixed
by Sandesh C
· 10 years ago
57c39cd
Add support for static and default methods in interfaces (Java 8)
by shoaniki
· 10 years ago
6d3e65e
Merge pull request #22 from BooNooNooNouS/master
by Chris Thunes
· 10 years ago
84f28ca
parse_element_values always returns a list with only the last value
by Karla Nunez
· 10 years ago
ce9800f
Release version 0.10.0
by Chris Thunes
· 10 years ago
javalang-0.10.0
2c7f5f6
Correct type comparsion in ast.Node.__equals__.
by Chris Thunes
· 10 years ago
4bf3be0
Merge pull request #18 from dbaxa/java_8_work
by Chris Thunes
· 11 years ago
9e8260b
make the the failing test_cast_works test pass.
by David Black
· 11 years ago
7e87c47
Add a failing test_cast_works test - this test is failing due to lambda code changes.
by David Black
· 11 years ago
6e5ef49
update the docstring for test_method_reference_explicit_type_arguments_for_generic_type.
by David Black
· 11 years ago
feb138c
Add an expected to fail test_method_reference_from_array_type test case.
by David Black
· 11 years ago
c010d21
Add a test case to cover the `ClassType :: [TypeArguments] new` case.
by David Black
· 11 years ago
7fd32d1
Make the failing test_method_reference_from_super_with_identifier test pass.
by David Black
· 11 years ago
4b61ff1
Add a failing test_method_reference_from_super_with_identifier test case.
by David Black
· 11 years ago
cef8a86
Make the test_method_reference_from_super test pass.
by David Black
· 11 years ago
6e1d267
Add a failing test_method_reference_from_super test.
by David Black
· 11 years ago
37c11e0
As per pr feedback, in parse_lambda_method_body change try_accept('->') to accept('->').
by David Black
· 11 years ago
1a861cc
Move the with self.tokens out of parse_lambda_expression and above where parse_lambda_expression is called inside of parse_expression_3.
by David Black
· 11 years ago
a2197ab
add and use a assert_contains_method_reference_expression_in_m method to the method reference tests.
by David Black
· 11 years ago
f3e2fe8
minor fix for the assert_contains_lambda_expression_in_m docstring.
by David Black
· 11 years ago
addc235
extract the main logic of assert_contains_lambda_expression_in_m out into a new filter_type_in_method method.
by David Black
· 11 years ago
e559801
set a fail message when no lambda expression is found.
by David Black
· 11 years ago
b807346
update the remaining lambda expression tests where appropriate to use assert_contains_lambda_expression_in_m.
by David Black
· 11 years ago
6d1cf48
Instead of just testing that parsing does not result in an error assert that the parse resource contains a lambda where we expect it to do so.
by David Black
· 11 years ago
d135d79
Merge branch 'java_8_work' of github.com:dbaxa/javalang into java_8_work
by David Black
· 11 years ago
3cc3062
Change the java 8 code as per feedback to work with the 'new' method, rename ExpressionWithMemberReference to MethodReference and add 'type_arguments' to it.
by David Black
· 11 years ago
a5b7f97
Test that invalid lambda parameters are considered invalid.
by david black
· 11 years ago
f1db8e8
Avoid extra nesting as per review feedback.
by david black
· 11 years ago
6b0ccfe
As per review feedback remove MethodReference and move it ('::') in as
by david black
· 11 years ago
519a807
Remove LambdaSymbol as it is not used.
by david black
· 11 years ago
9b2060f
Remove the is_lambda method as it is not needed.
by david black
· 11 years ago
46df3ff
remove the unused 'body' variable.
by david black
· 11 years ago
e432ede
Move parse_lambda_method_body next to parse_lambda_expression.
by david black
· 11 years ago
d90b5d7
Add support for multiple informal lambda parameters.
by David Black
· 11 years ago
c848fdf
remove _class_template from LambdaSupportTest.
by David Black
· 11 years ago
dc48241
Add support for method references that specify an explicit type.
by David Black
· 11 years ago
8693a3e
refactor the tests a little.
by David Black
· 11 years ago
93f6fe2
Add tests for java 8 method references.
by David Black
· 11 years ago
5e5a07f
Add tests for java 8 lambda syntax support.
by David Black
· 11 years ago
373df4f
Initial support for java 8 lambda expressions.
by David Black
· 11 years ago
b6c5b16
Add support for method/constructor references, '::'.
by David Black
· 11 years ago
ba6f5b9
ISSUE-16: Remove trailing whitespace from javadoc comments
by Chris Thunes
· 12 years ago
1f04d9f
Move existing tests into test directory
by Chris Thunes
· 12 years ago
b36c49d
Merge branch 'PackageInfo'
by Chris Thunes
· 12 years ago
ee58a65
Move tests and remove unneeded files
by Chris Thunes
· 12 years ago
4ccca26
Update the package parsing so it allows annotations and javadoc. Also
by Rob LaRubbio
· 12 years ago
87295e0
Release version 0.9.6
by Chris Thunes
· 12 years ago
javalang-0.9.6
780bf7f
Merge pull request #12 from dbaxa/minor_code_fixup
by Chris Thunes
· 12 years ago
cdbc07f
Merge pull request #11 from dbaxa/python_3_support
by Chris Thunes
· 12 years ago
2194cda
Merge branch 'python_3_support' into minor_code_fixup
by David Black
· 12 years ago
7044464
Prevent the attempt to import required but not yet installed modules by specifying the version number in setup.py instead of importing it from javalang/__init__.py.
by David Black
· 12 years ago
Next »