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

org.jruby.compiler.ir.operands.Backref Maven / Gradle / Ivy

There is a newer version: 9.4.12.0
Show newest version
package org.jruby.compiler.ir.operands;

// Represents a backref node in Ruby code
//
// NOTE: This operand is only used in the initial stages of optimization
// Further down the line, it could get converted to calls
//
public class Backref extends Operand
{
    final public char _type; 

    public Backref(char t) { _type = t; }

    public String toString() { return "$" + _type; }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy