@@ -15,7 +15,7 @@ import java
1515 * including the body (if any), as opposed to the location of its name only.
1616 */
1717class RangeCallable extends Callable {
18- predicate hasLocationInfo ( string path , int sl , int sc , int el , int ec ) {
18+ override predicate hasLocationInfo ( string path , int sl , int sc , int el , int ec ) {
1919 exists ( int elSuper , int ecSuper | super .hasLocationInfo ( path , sl , sc , elSuper , ecSuper ) |
2020 this .getBody ( ) .hasLocationInfo ( path , _, _, el , ec )
2121 or
@@ -39,7 +39,7 @@ class RangeCallable extends Callable {
3939 * including the range of its members (if any), as opposed to the location of its name only.
4040 */
4141class RangeRefType extends RefType {
42- predicate hasLocationInfo ( string path , int sl , int sc , int el , int ec ) {
42+ override predicate hasLocationInfo ( string path , int sl , int sc , int el , int ec ) {
4343 exists ( int elSuper , int ecSuper | super .hasLocationInfo ( path , sl , sc , elSuper , ecSuper ) |
4444 lastMember ( ) .hasLocationInfo ( path , _, _, el , ec )
4545 or
0 commit comments