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

net.sourceforge.pmd.lang.kotlin.ast.KotlinRootNode Maven / Gradle / Ivy

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

package net.sourceforge.pmd.lang.kotlin.ast;

import org.antlr.v4.runtime.ParserRuleContext;

import net.sourceforge.pmd.lang.ast.AstInfo;
import net.sourceforge.pmd.lang.ast.Parser.ParserTask;
import net.sourceforge.pmd.lang.ast.RootNode;
import net.sourceforge.pmd.lang.kotlin.ast.KotlinParser.KtKotlinFile;

// package private base class
abstract class KotlinRootNode extends KotlinInnerNode implements RootNode {

    private AstInfo astInfo;

    KotlinRootNode(ParserRuleContext parent, int invokingStateNumber) {
        super(parent, invokingStateNumber);
    }

    @Override
    public AstInfo getAstInfo() {
        return astInfo;
    }

    KtKotlinFile makeAstInfo(ParserTask task) {
        KtKotlinFile me = (KtKotlinFile) this;
        this.astInfo = new AstInfo<>(task, me);
        return me;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy