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

org.jruby.ir.operands.Nil Maven / Gradle / Ivy

package org.jruby.ir.operands;

// Records the nil object

import org.jruby.ir.IRVisitor;
import org.jruby.runtime.ThreadContext;

/**
 * Represents nil.
 *
 * Note: We used to protect the constructor, but since manager is the new
 * way I got lazy and removed protected.
 */
public class Nil extends ImmutableLiteral {
    public Nil() {
        super();
    }

    @Override
    public OperandType getOperandType() {
        return OperandType.NIL;
    }

    @Override
    public String toString() {
        return "nil";
    }

    @Override
    public Object createCacheObject(ThreadContext context) {
        return context.nil;
    }

    @Override
    public void visit(IRVisitor visitor) {
        visitor.Nil(this);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy