• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

pmd / pmd / 124

17 Aug 2025 04:39PM UTC coverage: 78.499% (+0.002%) from 78.497%
124

push

github

web-flow
chore(deps): Update tmp from 0.0.33 to 0.2.5 (#5991)

chore: Update tmp from 0.0.33 to 0.2.5

Fixes https://github.com/advisories/GHSA-52f5-9888-hmc6
Fixes https://github.com/pmd/pmd/security/dependabot/85

17923 of 23671 branches covered (75.72%)

Branch coverage included in aggregate %.

39231 of 49138 relevant lines covered (79.84%)

0.81 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/pmd-apex/src/main/java/net/sourceforge/pmd/lang/apex/ast/ASTInvalidDependentCompilation.java
1
/*
2
 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
3
 */
4

5
package net.sourceforge.pmd.lang.apex.ast;
6

7
import com.google.summit.ast.declaration.TypeDeclaration;
8

9
public final class ASTInvalidDependentCompilation extends AbstractApexNode.Single<TypeDeclaration> {
10

11
    ASTInvalidDependentCompilation(TypeDeclaration userClass) {
12
        super(userClass);
×
13
    }
×
14

15

16
    @Override
17
    protected <P, R> R acceptApexVisitor(ApexVisitor<? super P, ? extends R> visitor, P data) {
18
        return visitor.visit(this, data);
×
19
    }
20

21

22
    @Override
23
    public String getImage() {
24
        String apexName = getDefiningType();
×
25
        return apexName.substring(apexName.lastIndexOf('.') + 1);
×
26
    }
27
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc