view graal/com.oracle.truffle.ruby.parser/src/com/oracle/truffle/ruby/parser/RubyFrameTypeConversion.java @ 14033:9d62cf8aa990

refactored com.oracle.graal.hotspot.meta.HotSpotLoweringProvider.lower(Node, LoweringTool) into smaller methods
author twisti
date Thu, 27 Feb 2014 11:44:44 -0800
parents 0fbee3eb71f0
children
line wrap: on
line source

/*
 * Copyright (c) 2013 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 1.0
 * GNU General Public License version 2
 * GNU Lesser General Public License version 2.1
 */
package com.oracle.truffle.ruby.parser;

import com.oracle.truffle.api.impl.*;
import com.oracle.truffle.ruby.runtime.*;

public final class RubyFrameTypeConversion extends DefaultFrameTypeConversion {

    private static final RubyFrameTypeConversion INSTANCE = new RubyFrameTypeConversion();

    private RubyFrameTypeConversion() {
    }

    @Override
    public Object getDefaultValue() {
        return NilPlaceholder.INSTANCE;
    }

    public static RubyFrameTypeConversion getInstance() {
        return INSTANCE;
    }
}