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

net.thevpc.jeep.core.nodes.JNodeElse Maven / Gradle / Ivy

There is a newer version: 1.2.9
Show newest version
/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package net.thevpc.jeep.core.nodes;

/**
 *
 * @author thevpc
 */
public class JNodeElse extends JNodeStatement {

    public static final JNodeElse INSTANCE = new JNodeElse();

    public JNodeElse() {
        super();
    }

    @Override
    public int id() {
        return JNodeDefaultIds.NODE_ELSE;
    }

//    @Override
//    public JType getType(JContext context) {
//        return context.types().forName(Void.class);
//    }

//    @Override
//    public Object evaluate(JContext context) {
//        return null;
//    }

    public String toString() {
        return "else";
    }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy