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