@@ -104,11 +104,11 @@ module Make<RegexTreeViewSig TreeImpl> {
104104 private class RegexpCharacterConstant instanceof RegExpConstant {
105105 RegexpCharacterConstant ( ) { this .isCharacter ( ) }
106106
107- string toString ( ) { result = this . ( RegExpConstant ) .toString ( ) }
107+ string toString ( ) { result = super .toString ( ) }
108108
109- RegExpTerm getRootTerm ( ) { result = this . ( RegExpConstant ) .getRootTerm ( ) }
109+ RegExpTerm getRootTerm ( ) { result = super .getRootTerm ( ) }
110110
111- string getValue ( ) { result = this . ( RegExpConstant ) .getValue ( ) }
111+ string getValue ( ) { result = super .getValue ( ) }
112112 }
113113
114114 /**
@@ -578,11 +578,11 @@ module Make<RegexTreeViewSig TreeImpl> {
578578 )
579579 }
580580
581- string toString ( ) { result = this . ( RegExpTerm ) .toString ( ) }
581+ string toString ( ) { result = super .toString ( ) }
582582
583- RegExpTerm getAChild ( ) { result = this . ( RegExpTerm ) .getChild ( _) }
583+ RegExpTerm getAChild ( ) { result = super .getChild ( _) }
584584
585- RegExpTerm getChild ( int i ) { result = this . ( RegExpTerm ) .getChild ( i ) }
585+ RegExpTerm getChild ( int i ) { result = super .getChild ( i ) }
586586 }
587587
588588 /**
@@ -601,11 +601,11 @@ module Make<RegexTreeViewSig TreeImpl> {
601601 )
602602 }
603603
604- string toString ( ) { result = this . ( RegExpTerm ) .toString ( ) }
604+ string toString ( ) { result = super .toString ( ) }
605605
606- RegExpTerm getAChild ( ) { result = this . ( RegExpTerm ) .getAChild ( ) }
606+ RegExpTerm getAChild ( ) { result = super .getAChild ( ) }
607607
608- RegExpTerm getChild ( int i ) { result = this . ( RegExpTerm ) .getChild ( i ) }
608+ RegExpTerm getChild ( int i ) { result = super .getChild ( i ) }
609609 }
610610
611611 /**
@@ -621,11 +621,11 @@ module Make<RegexTreeViewSig TreeImpl> {
621621 )
622622 }
623623
624- string toString ( ) { result = this . ( RegExpTerm ) .toString ( ) }
624+ string toString ( ) { result = super .toString ( ) }
625625
626- RegExpTerm getAChild ( ) { result = this . ( RegExpTerm ) .getAChild ( ) }
626+ RegExpTerm getAChild ( ) { result = super .getAChild ( ) }
627627
628- RegExpTerm getChild ( int i ) { result = this . ( RegExpTerm ) .getChild ( i ) }
628+ RegExpTerm getChild ( int i ) { result = super .getChild ( i ) }
629629 }
630630
631631 /**
0 commit comments