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

net.sourceforge.pmd.lang.swift.ast.SwiftRootNode Maven / Gradle / Ivy

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

package net.sourceforge.pmd.lang.swift.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.swift.ast.SwiftParser.SwTopLevel;

// package private base class
abstract class SwiftRootNode extends SwiftInnerNode implements RootNode {

    private AstInfo astInfo;

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

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy