File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
src/NHibernate/Hql/Ast/ANTLR/Tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ public class ASTNode : IASTNode, ITree
17
17
private readonly IToken _token ;
18
18
private List < IASTNode > _children ;
19
19
20
- public ASTNode ( )
20
+ public ASTNode ( )
21
21
: this ( ( IToken ) null ) { }
22
22
23
23
public ASTNode ( IToken token )
@@ -425,7 +425,6 @@ object ITree.DeleteChild(int i)
425
425
{
426
426
object node = _children [ i ] ;
427
427
RemoveChild ( i ) ;
428
-
429
428
return node ;
430
429
}
431
430
@@ -469,7 +468,11 @@ ITree ITree.DupNode()
469
468
return ( ITree ) DupNode ( ) ;
470
469
}
471
470
472
- int ITree . ChildIndex { get ; set ; }
471
+ int ITree . ChildIndex
472
+ {
473
+ get { return _childIndex ; }
474
+ set { _childIndex = value ; }
475
+ }
473
476
474
477
ITree ITree . Parent
475
478
{
@@ -513,6 +516,7 @@ IEnumerator IEnumerable.GetEnumerator()
513
516
{
514
517
return GetEnumerator ( ) ;
515
518
}
519
+
516
520
#endregion
517
521
518
522
// //////////////////////////////////////////////////////////
You can’t perform that action at this time.
0 commit comments