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

pmd / pmd / 4553

25 Apr 2025 06:55AM UTC coverage: 77.84% (+0.008%) from 77.832%
4553

push

github

adangel
[core] Support language dialects (#5438)

Merge pull request #5438 from Monits:lang-dialects

17661 of 23654 branches covered (74.66%)

Branch coverage included in aggregate %.

113 of 137 new or added lines in 12 files covered. (82.48%)

20 existing lines in 5 files now uncovered.

38710 of 48765 relevant lines covered (79.38%)

0.8 hits per line

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

50.0
/pmd-core/src/main/java/net/sourceforge/pmd/lang/impl/BasePmdDialectLanguageVersionHandler.java
1
/**
2
 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
3
 */
4

5
package net.sourceforge.pmd.lang.impl;
6

7
import net.sourceforge.pmd.annotation.Experimental;
8
import net.sourceforge.pmd.lang.AbstractPmdLanguageVersionHandler;
9
import net.sourceforge.pmd.lang.ast.Parser;
10

11
/**
12
 * Base language version handler for dialect languages that support PMD, i.e. can build an AST
13
 * and support AST processing stages.
14
 *
15
 * @author Juan Martín Sotuyo Dodero
16
 * @since 7.13.0
17
 * @experimental Since 7.13.0. See <a href="https://github.com/pmd/pmd/pull/5438">[core] Support language dialects #5438</a>.
18
 */
19
@Experimental
20
public class BasePmdDialectLanguageVersionHandler extends AbstractPmdLanguageVersionHandler {
1✔
21

22
    @Override
23
    public final Parser getParser() {
NEW
24
        return null;
×
25
    }
26
}
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

© 2026 Coveralls, Inc