You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
0.10.0 - Added C# and Java enum parsing (see new class field 'initializer'/'initializerExpression' JSON field), major refactoring (package and class moving/renaming), added unit tests.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+30-2Lines changed: 30 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,8 +4,36 @@ This project does its best to adhere to [Semantic Versioning](http://semver.org/
4
4
5
5
6
6
--------
7
-
###[0.10.8](N/A) - 2016-09-02
8
-
#### Changed
7
+
###[0.11.0](N/A) - 2016-09-05
8
+
#### Added
9
+
*__basic C# and Java enum parsing__
10
+
* Added twg2.ast.interm.field FieldDef and FieldDefResolved to represent enum members (TODO could use some clarification/refactoring)
11
+
* Added CsEnumMemberExtractor and JavaEnumMemberExtractor
12
+
* Moved duplicate code from class that implemented AstParser into new AstParserReusableBase and AstMemberInClassParserReusable abstract classes (I know the names are a little awkward, suggestions are welcome)
13
+
* Added C# and Java unit tests for enum parsing
14
+
* Moved duplicate source code parsing logic for tests into new CodeFileAndAst class
15
+
16
+
#### Changed
17
+
* moved and renamed several packages and class names
18
+
* twg2.parser.baseAst and sub-packages split and moved to twg2.parser.codeParser and sub-packages
* Updated dependency, switched jparser-data-type-like (now deprecated/removed) to jparse-primitive which is a separate project containing just the primitive parsing code from jparser-data-type-like
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
JParseCode
2
2
==============
3
-
version: 0.10.8
3
+
version: 0.11.0
4
4
5
5
In progress C#/Java/TypeScript parser tools built atop [JTextParser] (https://github.com/TeamworkGuy2/JTextParser), [Jackson] (https://github.com/FasterXML/jackson-core/) (core, databind, annotations) and half a dozen other utility libraries.
0 commit comments