All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sourceforge.pmd.lang.julia.JuliaLanguageModule Maven / Gradle / Ivy

The newest version!
/*
 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
 */

package net.sourceforge.pmd.lang.julia;

import net.sourceforge.pmd.cpd.CpdLexer;
import net.sourceforge.pmd.lang.LanguagePropertyBundle;
import net.sourceforge.pmd.lang.LanguageRegistry;
import net.sourceforge.pmd.lang.impl.CpdOnlyLanguageModuleBase;
import net.sourceforge.pmd.lang.julia.cpd.JuliaCpdLexer;

/**
 * Language implementation for Julia.
 */
public class JuliaLanguageModule extends CpdOnlyLanguageModuleBase {
    private static final String ID = "julia";

    /**
     * Creates a new Julia Language instance.
     */
    public JuliaLanguageModule() {
        super(LanguageMetadata.withId(ID).name("Julia").extensions("jl"));
    }

    public static JuliaLanguageModule getInstance() {
        return (JuliaLanguageModule) LanguageRegistry.CPD.getLanguageById(ID);
    }

    @Override
    public CpdLexer createCpdLexer(LanguagePropertyBundle bundle) {
        return new JuliaCpdLexer();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy