org.truffleruby.language.literal.ObjectLiteralNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ruby-language Show documentation
Show all versions of ruby-language Show documentation
Core module of Ruby on Truffle
The newest version!
/*
* Copyright (c) 2013, 2024 Oracle and/or its affiliates. All rights reserved. This
* code is released under a tri EPL/GPL/LGPL license. You can use it,
* redistribute it and/or modify it under the terms of the:
*
* Eclipse Public License version 2.0, or
* GNU General Public License version 2, or
* GNU Lesser General Public License version 2.1.
*/
package org.truffleruby.language.literal;
import org.truffleruby.language.RubyContextSourceNode;
import com.oracle.truffle.api.frame.VirtualFrame;
import org.truffleruby.language.RubyNode;
public final class ObjectLiteralNode extends RubyContextSourceNode {
private final Object object;
public ObjectLiteralNode(Object object) {
this.object = object;
}
@Override
public Object execute(VirtualFrame frame) {
return object;
}
public Object getObject() {
return object;
}
@Override
public RubyNode cloneUninitialized() {
var copy = new ObjectLiteralNode(object);
return copy.copyFlags(this);
}
}