blob: cc800dda90a138e0024a0dea9c85c2ab30c516e7 [file] [log] [blame] [view]
Danny van Bruggen5e6d7292017-07-16 22:19:10 +02001Version 3.2.12
2------------------
3[issues resolved](https://github.com/javaparser/javaparser/milestone/51?closed=1)
4
Danny van Bruggen969b7f62017-07-10 21:03:41 +02005Version 3.2.11
6------------------
7[issues resolved](https://github.com/javaparser/javaparser/milestone/50?closed=1)
8* We're up to date with the latest Java 9 module system again.
9
Danny van Bruggen3d195982017-07-05 12:02:09 +020010Version 3.2.10
Danny van Bruggenb5b70ee2017-07-02 20:36:42 +020011------------------
12[issues resolved](https://github.com/javaparser/javaparser/milestone/49?closed=1)
13* `Node.replace(old, new)` was added, including property-specific `X.replaceY(newY)` methods
14
Danny van Bruggen3d195982017-07-05 12:02:09 +020015Version 3.2.9
16------------------
17Scrapped due to release problem.
18
Danny van Bruggen1fb7c9d2017-06-18 18:10:59 +020019Version 3.2.8
20------------------
21[issues resolved](https://github.com/javaparser/javaparser/milestone/48?closed=1)
22* Added `isInnerClass()` that checks if a `ClassOrInterfaceDeclaration` is an inner class (note: this is different from a nested class!)
23* @ryan-beckett contributed a huge [Eclipse setup guide](https://github.com/javaparser/javaparser/wiki/Eclipse-Project-Setup-Guide)
24
Danny van Bruggenc7f87802017-06-11 15:57:27 +020025Version 3.2.7
26------------------
27[issues resolved](https://github.com/javaparser/javaparser/milestone/47?closed=1)
28* We now recover from some parse errors! [Here is an article](https://matozoid.github.io/2017/06/11/parse-error-recovery.html)
29
Danny van Bruggen9250ffa2017-06-04 20:50:37 +020030Version 3.2.6
31------------------
32[issues resolved](https://github.com/javaparser/javaparser/milestone/46?closed=1)
33* `EmptyMemberDeclaration` is gone!
34It was deprecated for a while because it it was in the AST, but doesn't have any meaning in a Java program.
35`EmptyStmt` was also deprecated, but that has been reverted.
36This node *does* have meaning.
37
Danny van Bruggenee5691c2017-05-22 19:47:13 +020038Version 3.2.5
39------------------
40[issues resolved](https://github.com/javaparser/javaparser/milestone/45?closed=1)
41* `NodeWithCondition` was added on all nodes containing a condition.
42* Lots of work on improving lexical preservation.
43* If a file was parsed from a file system, you can now get path information etc. from `CompilationUnit`
44* API BREAKING: every node now points to its start and end token.
45Some of the API has started returning `TokenRange` instead of `Range` - you can call `toRange` to get the old object type.
46We may still change the naming of some of this code in the following month.
47
Danny van Bruggen5201adc2017-05-14 14:00:56 +020048Version 3.2.4
49------------------
50New style changelog, no more issue numbers, but a link:
51[issues resolved](https://github.com/javaparser/javaparser/milestone/44?closed=1)
52and any notable changes:
53* the new method `Node.removeForced()` by removing it, or removing the first parent that is optional.
54This is different from `Node.remove()`, `remove()` only tries to remove the node from the parent and fails if it can't.
55* `FieldAccessExpr.scope` is now a required property.
56You might find some `get()`s in your code that are no longer necessary.
57* `ReferenceType` no longer has a type parameter, so every `ReferenceType<?>` can be replaced by `ReferenceType` now.
58
Danny van Bruggen9c513212017-04-30 22:15:44 +020059Version 3.2.3
60------------------
61* 907 906 905 903 911 910 909 908 smaller improvements and fixes
62
Danny van Bruggendc8077a2017-04-23 12:04:03 +020063Version 3.2.2
64------------------
65Beta: `TreeStructureVisitor`.
66
67* 770 902 904 901 smaller improvements and fixes
68
Danny van Bruggen28cf0be2017-04-16 15:05:10 +020069Version 3.2.1
70------------------
71Beta: `TreeStructureVisitor`.
72
73* Maven dependencies were updated to their latest versions
74* 890 the concept of "method signature" now exists in JavaParser
75* 896 891 889 887 882 789 smaller improvements and fixes
76
Danny van Bruggen7a3b9602017-04-02 21:39:40 +020077Version 3.2.0
78------------------
79The lexical preservation code is stable!
80
81Beta: `TreeStructureVisitor`.
82
83* 885 884 879 878 smaller improvements and fixes
84
Danny van Bruggencadeeb52017-03-26 20:40:56 +020085Version 3.1.4
86------------------
87This is the first version to parse Java 9.
88
89Beta: `TreeStructureVisitor`, and `LexicalPreservingPrinter`.
90
91* 872 873 874 787 Remaining Java 9 work.
92
Danny van Bruggen64dd2802017-03-19 13:52:35 +010093Version 3.1.3
94------------------
95Beta: `TreeStructureVisitor`, and `LexicalPreservingPrinter`.
96
97A start has been made on source level support. The default level is Java 8.
98It can be set to Java 9 like this for a parser *instance*:
99```java
100private final JavaParser parser = new JavaParser(new ParserConfiguration().setValidator(new Java9Validator()));
101```
102and like this for the static parse methods:
103```java
104JavaParser.getStaticConfiguration().setValidator(new Java9Validator());
105```
106
107* 862 552 "_" is an illegal identifier on source level 9.
108* 869 867 109 855 857 smaller improvements and fixes
109
Danny van Bruggen79776b72017-03-11 15:07:40 +0100110Version 3.1.2
111------------------
112Beta: `TreeStructureVisitor`, `ConcreteSyntaxModel`, and `LexicalPreservingPrinter`.
113
114* 594 849 831 a validation framework was introduced to inform about problems in the AST without needing to change the grammar,
115and without requiring parsing code.
116It is open for extension by users.
117* 852 853 826 832 846 839 smaller improvements and fixes
118
Danny van Bruggenf50a5512017-03-04 18:14:46 +0100119Version 3.1.1
120------------------
121Beta: `TreeStructureVisitor`, `ConcreteSyntaxModel`, and `LexicalPreservingPrinter`.
122
123* 654 124 lexical preservation (printing source code with the same formatting it had when parsing) has been added.
124 Thank you @ftomassetti for a lot of work!
125* 554 800 first (big) step towards Java 9 support: JavaParser can read project Jigsaw module definitions.
126* 795 786 751 extend the TreeVisitor with more traversal options. Thanks @ryan-beckett!
127* 791 `GenericListVisitorAdapter` has been added which collects its results in a list. Thanks @Gottox!
128* 815 798 797 813 clean up Problem text
129* 819 818 817 816 441 809 808 807 fix various absurd annotation related issues.
130* 777 805 802 796 790 792 793 781 784 785 783 782 779 357 799 763 smaller improvements and fixes
131
Danny van Bruggen076d3ee2017-02-19 22:56:24 +0100132Version 3.1.0
133------------------
Danny van Bruggenf50a5512017-03-04 18:14:46 +0100134Beta: `TreeStructureVisitor` and `ConcreteSyntaxModel`.
Danny van Bruggen076d3ee2017-02-19 22:56:24 +0100135
136* 705 755 Add the concrete syntax model, which will give you information about the exact syntax a certain nodes matches.
137
138* 777 smaller improvements and fixes
139
Danny van Bruggenadae33f2017-02-14 19:59:50 +0100140Version 3.1.0-beta.2
141------------------
142This version is a beta because `TreeStructureVisitor` is not in its definite state yet.
143
144* 762 761 772 merge `javaparser-metamodel` and `javaparser-generator-utils` into `javaparser-core`.
145* 766 the `ModifierVisitor` is now created by a code generator. Its behaviour has been made logical, and may give different results than before.
146* 755 `ConstructorDeclaration` and `MethodDeclaration` now share a parent: `CallableDeclaration`
147* 687 759 773 769 768 767 765 759 smaller improvements and fixes
148
Danny van Bruggen23d54772017-02-05 16:21:16 +0100149Version 3.1.0-beta.1
Danny van Bruggen70f343e2017-01-28 14:07:25 +0100150------------------
Danny van Bruggen23d54772017-02-05 16:21:16 +0100151This version is a beta because there are a lot of new features that may still change.
152
153This version needs a minor version increase because of a backwards compatability issue:
154* 719 `getJavadoc`, `getJavadocComment` and `getComment` could return null. Our promise was to return `Optional`, so that is what they do now.
Danny van Bruggen70f343e2017-01-28 14:07:25 +0100155
156New:
Danny van Bruggene6079d82017-02-05 16:50:01 +0100157* 658 718 736 737 we have created a metamodel.
Danny van Bruggen23d54772017-02-05 16:21:16 +0100158It gives information about the structure of the various AST nodes, as if you are introspecting them.
159You can find it in `javaparser-metamodel`, the main class is `JavaParserMetaModel`
Danny van Bruggene6079d82017-02-05 16:50:01 +0100160* 353 365 visitors are no longer hand made, they are now generated from the metamodel. This should make them 100% reliable.
Danny van Bruggen23d54772017-02-05 16:21:16 +0100161Affected visitors are: `GenericVisitorAdapter`, `EqualsVisitor`, `VoidVisitorAdapter`, `VoidVisitor`, `GenericVisitor`, `HashCodeVisitor`, `CloneVisitor`.
162
163If you want to generate your own visitors, you can use the `VisitorGenerator` class from `javaparser-core-generators`
164
165If you want to reuse the code generation utilities, look at module `javaparser-generator-utils` - there is a very useful `SourceRoot` class in there that takes away a lot of file management troubles.
Danny van Bruggene6079d82017-02-05 16:50:01 +0100166* 538 735 `TreeStructureVisitor` has been added, which should be considered beta.
167* 220 733 717 749 745 750 743 748 666 732 746 734 733 smaller improvements and fixes
Danny van Bruggen70f343e2017-01-28 14:07:25 +0100168
Danny van Bruggenc5f6e9b2017-01-15 20:58:52 +0100169Version 3.0.1
170------------------
171* 699 433 325 Javadoc can now be parsed
172* 703 696 added NodeWithOptionalScope
173* 702 FieldAccessExpr now implements NodeWithSimpleName, *which means that "field" has been renamed to "name"*
174* 707 706 improve range of array types and levels
175* 709 smaller improvements and fixes
176
Danny van Bruggen1804ea22017-01-07 23:06:22 +0100177Version 3.0.0
178------------------
179* 695 697 689 680 693 691 682 690 677 679 688 684 683 smaller improvements and fixes
180
Danny van Bruggene11ed222016-12-24 22:25:49 +0100181Version 3.0.0-RC.4
182------------------
183* 668 669 TypeDeclarationStmt became LocalClassDeclarationStmt
184* 347 665 every node now has some documentation
185* 660 670 673 four types of import declaration have been merged back into the old ImportDeclaration
186* 659 The pretty printer can now take customized visitors
187* 650 671 672 674 524 smaller improvements and fixes
188
Danny van Bruggenfc9c4a92016-12-18 23:13:10 +0100189Version 3.0.0-RC.3
190------------------
191* 639 622 632 657 656 652 653 647 648 645 194 643 630 624 628 627 626 625 623 cleanups, small fixes, and general housekeeping
192
Danny van Bruggendd5d4d02016-12-09 16:40:59 +0100193Version 3.0.0-RC.2
194------------------
195* 593 EmptyImportDeclaration and NonEmptyImportDeclaration have been removed
196* 612 VariableDeclaratorId has been removed. It has been substituted by "SimpleName name"
197* 614 617 the list of tokens has been linearized and simplified
198* 615 support for arrays has once more been changed. See [the issue](https://github.com/javaparser/javaparser/issues/592)
199* 580 453 380 618 580 611 610 424 608 smaller improvements and fixes
200
Danny van Bruggen61aaeaf2016-12-01 18:37:11 +0100201Version 3.0.0-RC.1
202------------------
203* 499 601 renames many fields to be more consistent
204* 596 605 602 604 smaller improvements and fixes
205
Danny van Bruggen47379542016-11-27 16:54:33 +0100206Version 3.0.0-alpha.11
207------------------
208* 547 595 Node.range is now using Optional instead of Range.UNKNOWN
Danny van Bruggen6738e1c2016-11-28 19:46:45 +0100209* 584 588 548 585 bug fixes and improvements
Danny van Bruggen47379542016-11-27 16:54:33 +0100210
matozoidf52d1ad2016-11-20 16:36:22 +0100211Version 3.0.0-alpha.10
212------------------
213* 578 579 577 575 290 570 568 567 562 564 551 bug fixes and improvements
214
Danny van Bruggen02b3c5e2016-11-10 10:33:44 +0100215Version 3.0.0-alpha.9
216------------------
217* 403 358 549 Make all names nodes: either SimpleName or Name. This makes every name in the AST visitable. NameExpr is now a wrapper to use SimpleName in an expression.
matozoidd2c9f432016-11-13 17:29:38 +0100218* 516 536 use Optional<> for return values.
matozoid789ddfe2016-11-13 17:33:43 +0100219* 556 557 558 550 small improvements and fixes.
220* 560 559 make nodes observable.
Danny van Bruggen02b3c5e2016-11-10 10:33:44 +0100221
matozoidaa79a622016-11-06 14:13:37 +0100222Version 3.0.0-alpha.8
223------------------
224* 344 529 turn DumpVisitor into an official PrettyPrinter
225* 532 508 427 530 531 513 528 cleanups
226
matozoidde10e892016-10-26 19:48:54 +0200227Version 3.0.0-alpha.7
228------------------
matozoid57a10942016-10-30 21:14:28 +0100229* 515 roll back attempt at using Optional
230* 522 504 make NodeList not a Node (restores parent/children behaviour to before alpha.4)
231* 527 526 rename getChildrenNodes to getChildNodes
232* 525 495 520 bug fix
matozoidde10e892016-10-26 19:48:54 +0200233
234Version 3.0.0-alpha.6
235------------------
236* 503 modified ImportDeclaration hierarchy to have getters for static and "asterisk" again
237* 506 bug fix
238
matozoid9ac80482016-10-16 22:08:51 +0200239Version 3.0.0-alpha.5
240------------------
241* 451 null is no longer allowed in the AST. [See last post in issue](https://github.com/javaparser/javaparser/issues/451)
242* 501 421 420 316 use a special type of list for nodes: NodeList. [See last post in issue](https://github.com/javaparser/javaparser/issues/421)
243
matozoid93c5ac12016-10-09 22:03:29 +0200244Version 3.0.0-alpha.4
245------------------
246* 463 471 nodes can now be removed easily
247* 491 import handling changed. Instead of "ImportDeclaration", we now have the four types of import as described in the JLS. [See issue](https://github.com/javaparser/javaparser/pull/491)
248* 452 355 474 494 various improvements
249* 493 492 485 Simplify the JavaParser interface
250
matozoid6ea2c522016-09-30 18:55:44 +0200251Version 3.0.0-alpha.3
252------------------
matozoid93c5ac12016-10-09 22:03:29 +0200253* 112 237 466 465 461 460 458 457 fundamentally changes how we deal with arrays. [It is explained in the last post here](https://github.com/javaparser/javaparser/issues/237)
matozoid6ea2c522016-09-30 18:55:44 +0200254* 472 456 makes the "data" field on every node more structured.
255* 477 468 refactor TypeArguments. You will find that TypeArguments is no longer a type, it is just a list in some nodes.
256* 482 adds the "nodeTypes" packages to the osgi export.
257* 479 476 makes all setters on nodes return this so they become chainable.
258* 473 437 clean up CloneVisitor.
matozoid53d288a2016-07-18 13:32:44 +0200259
matozoid6ea2c522016-09-30 18:55:44 +0200260Version 3.0.0-alpha.2
261------------------
262* 157 a new parser frontend, check https://github.com/javaparser/javaparser/pull/447 for explanations
263* 435 more builder methods like 400 and 405
264* 111 440 443 444 445 446 bugs & cleanups
matozoid53d288a2016-07-18 13:32:44 +0200265
matozoid6ea2c522016-09-30 18:55:44 +0200266Version 3.0.0-alpha.1
267------------------
268* 400 405 introduce many "builder" style methods for constructing code. Thanks DeepSnowNeeL!
269* 409 remove ASTHelper (methods are now on specific Node subclasses)
270* 414 JavaParser can now be instantiated and reused. InstanceJavaParser removed
271* 418 417 411 408 bugs
272* 367 420 407 402 various cleanups
273
274Version 2.5.1
matozoid53d288a2016-07-18 13:32:44 +0200275-------------
matozoid6ea2c522016-09-30 18:55:44 +0200276* 394 OSGi manifest added
277* 391 fix ModifierVisitor NullPointerException bug
278* 385 a few new parse methods
279* 386 fix dumping an empty import (a single ; after the package declaration)
matozoid53d288a2016-07-18 13:32:44 +0200280
281Version 2.5.0
282-------------
283API breaking changes:
284
285* 191: moved TreeVisitor to visitor package
286* 368, 162, 303, 302, 360: use correct type in some places.
287* 371: code is now compiled with Java 8
288* 342, 331: ModifierVisitorAdapter detects and removes broken nodes
289* 328, 270: upgrade JavaCC (use TokenMgrException now)
290Other changes:
291
292* 297: enable access to tokens.
293* 341, 361: node positions are now OO
294* 211, 373: escaping of \n \r for string literals
295* 336, 276, 141: JavaDoc support now works
296* 337, 281: reorganize the stream reading code
297* 343, 309, 332, 57: take advantage of common interfaces
298* 329, 326, 327: deal with platform issues
299* 163, 236, 252, 296, 269, 339, 321, 322, 252, 253, 293, 295: various fixes
300* 310, 311, 313, 301, 294: some code clean-ups
Danny van Bruggen5f5c6cc2016-07-20 13:40:30 +0200301
matozoid6ea2c522016-09-30 18:55:44 +0200302Version 2.4.0
Danny van Bruggen5f5c6cc2016-07-20 13:40:30 +0200303-------------
matozoid6ea2c522016-09-30 18:55:44 +0200304* several fixes in DumpVisitor for bugs due to lazy initialization
305* make TypeDeclaration implements DocumentableNode directly
306* TypedNode interface introduced
307* introduce MultiBoundType
308* refactored IntersectionType and UnionType
309* refactored CatchClause
310* parsing annotations in throws declarations
311* parse orphan semicolons in import statements
312* added PackageDeclaration.getPackageName
313* solved issue with newlines in string literals
314* fixed handling of UnknownType in EqualsVisitor
315* improvements to CommentsParser
316* removing old grammar
matozoid13818472016-08-23 22:03:06 +0200317
matozoid6ea2c522016-09-30 18:55:44 +0200318Version 2.3.0
319-------------
320* ClassOrInterfaceType implements NamedNode
321* DumpVisitor can now be extended
322* Improved documentation
323* AST: lists are now lazy initialized
matozoid8669cf42016-09-30 18:39:12 +0200324
Danny van Bruggen27b32072017-02-19 23:27:37 +0100325Version 2.1.0
matozoideae61572016-09-30 18:57:34 +0200326-------------
327* Features
328 * [#75 performance improvement for `PositionUtils.sortByBeginPosition`](https://github.com/javaparser/javaparser/issues/75)
329 * [#64 In getDeclarationAsString parameter names should be optional](https://github.com/javaparser/javaparser/issues/64)
330* Bugfixes
331 * [#79 Fix NPE in `ConstructorDeclaration.getDeclarationAsString`](https://github.com/javaparser/javaparser/pull/79)
332 * [#86 Add missing functions to ModifierVisitorAdapter](https://github.com/javaparser/javaparser/pull/86)
333 * [#82 set LambdaExpr as parent of its child nodes](https://github.com/javaparser/javaparser/issues/82)
334 * [#87 implement `setJavadoc` and `getJavadoc` at various classes](https://github.com/javaparser/javaparser/issues/87)
335 * [#96 Fixed encoding issue in `Javaparser.parse`](https://github.com/javaparser/javaparser/pull/96)
336 * [#85 Casting a lambda expression causes a parsing failure](https://github.com/javaparser/javaparser/issues/85)
337 * [#88 `MethodReferenceExpr` and `TypeExpr` don't set themselves as parents](https://github.com/javaparser/javaparser/issues/88)
338* Internal
339 * [#89 CommentsParser.State contains unused fields](https://github.com/javaparser/javaparser/issues/89)
340 * Switched from drone.io to [Travis](https://travis-ci.org/javaparser/javaparser)
341 * [#105 Enforce compiling the library for a certain Java version](https://github.com/javaparser/javaparser/pull/105)
342
343[Code changes](https://github.com/javaparser/javaparser/compare/javaparser-parent-2.0.0...master)
344
345Version 2.0.0
346-------------
347* support Java 8
Danny van Bruggen27b32072017-02-19 23:27:37 +0100348
349Version 1.0.8 (2010-01-17)
350-------------
351* Fixed issues:
352 * Issue 17: A refactor suggestion for AnnotationExpr and its subclasses
353 * Issue 21: Java 5 JavaParser compiled JARs
354 * Issue 22: Please use java.lang.reflect.Modifier constants in japa.parser.ast.body.ModifierSet
355 * Issue 27: Implement the "equal" method
356 * Issue 30: equals and hashCode methods
357
358Version 1.0.7 (2009-04-12)
359-------------
360* Issue 19 fixed:
361* Tests changed to run with junit 4
362
363Version 1.0.6 (2009-01-11)
364-------------
365* Issue 11 fixed: changed method get/setPakage to get/setPackage in the class CompilationUnit
366* Created new visitor adapter to help AST modification: ModifierVisitorAdapter
367* Changed visitor adapters to abstract
368
369Version 1.0.5 (2008-10-26)
370-------------
371* Created simplified constructors in the nodes of the AST (without positional arguments)
372* Created ASTHelper class with some helpful methods (more methods are still needed)
373
374Version 1.0.4 (2008-10-07)
375-------------
376* Moved to javacc 4.1.
377* The java_1_5.jj can be build alone without compilation errors
378
379Version 1.0.3 (2008-09-06)
380-------------
381* Removed SuperMemberAccessExpr class, it was no longer used
382* Removed the methods get/setTypeArgs() from ArrayCreationExpr, this node shouldn't have these methods.
383* Fixed the bug with start/end position of the nodes IntegerLiteralMinValueExpr and LongLiteralMinValueExpr
384* The methods get/setAnnotations() from all BodyDeclaration subclasses were pushed down to BodyDeclaration class
385
386Version 1.0.2 (2008-07-20)
387-------------
388* Issue fixed: Issue 1: Add support for editing AST nodes or create new ones
389
390Version 1.0.1 (2008-07-01)
391-------------
392* Issue fixed: Issue 5: end line and end column equal to begin line and begin column
393
394Version 1.0.0 (2008-06-25)
395-------------
396* Changed version numbering, starting version 1.0.0
397* Javadoc done for packages:
398 * japa.parser
399 * japa.parser.ast
400* Corrected bug when parsing in multithread:
401 * JavaParser.setCacheParser(false) must be called before to use the parser concurrent
402
4032008-06-19
404-------------
405* No code changes, added binary distribution to download page
406
4072008-06-11
408-------------
409* Bug corrected: NPE in VoidVisitorAdapter
410 * http://code.google.com/p/javaparser/issues/detail?id=2
411
4122008-06-09
413-------------
414* Added Adapters for de visitors
415
4162008-05-28
417-------------
418* This project now is published at Google Code:
419 * http://code.google.com/p/javaparser/
420
4212008-05-25
422-------------
423* Added support for comments and javadoc to the tree.
424 * Javadocs are stored directly to members (BodyDeclaration and all deriveds (classes, methods, fields, etc.)), accessible by the method getJavadoc().
425 * All comments are stored in the CompilationUnit, accessible by the method getComments().
426
4272008-04-01
428-------------
429* Changed all nodes public attributes to be private and created getters to access them
430* Changed the methods of the Node getLine e getColumn to getBeginLine and getBeginColumn
431* Added the methods getEndLine and getEndColumn to the Node class (works only in the BlockNode)
432
4332007-12-22
434-------------
435* Corrected ConditionalExpression bug
436
4372007-10-21
438-------------
439* Added LGPL License
440
4412007-10-21
442-------------
443* Bugs corrected:
444 * Created PackageDeclaration member of CompilationUnit to add suport for annotations in the package declaration
445 * Parameterized anonymous constructor invocation
446 * Explicit constructor invotation Type Arguments
447 * ctrl+z ("\u001A") ar end of compilation unit
448
4492007-10-09
450-------------
451* EnumConstantDeclaration annotation support corrected
452* Parssing Java Unicode escape characters suport added
453
4542007-10-03
455-------------
456* Bug corrected: "MotifComboPopup.this.super()" statement was generating parser error
457
4582007-10-01
459-------------
460* Bug corrected: Casting signed primitive values
461```
462 double d = (double) -1;
463 ^
464```
4652007-08-06
466-------------
467* Bug with the single line comments in the final of the unit corrected
468
4692007-07-31
470-------------
471* Fixed the bug with the following expression: `Class c = (int.class);`
472
4732007-06-26
474-------------
475* Bug fixes from Leon Poyyayil work
476 * suport for hex floating point
477 * unicode digits in indentifier
478 * MemberValueArrayInitializer
479
4802007-03-09
481-------------
482* Long and Integer literal MIN_VALUE bug
483
4842007-02-24
485-------------
486* '\0' bug fixed
487
4882007-02-01
489-------------
490* Many bug fixes
491* Added line/column to nodes