(ref: UnresolvedRef)
| 714 | * to a same-named symbol — so callers must not fall back to the name-matcher. |
| 715 | */ |
| 716 | export function isPhpIncludePathRef(ref: UnresolvedRef): boolean { |
| 717 | return ( |
| 718 | ref.language === 'php' && |
| 719 | ref.referenceKind === 'imports' && |
| 720 | (ref.referenceName.includes('/') || ref.referenceName.includes('.')) |
| 721 | ); |
| 722 | } |
| 723 | |
| 724 | /** |
| 725 | * Is this a COBOL COPY / EXEC SQL INCLUDE copybook reference? These resolve |
no outgoing calls
no test coverage detected