Package com.oracle.truffle.r.nodes.function.FunctionExpressionNode

Examples of com.oracle.truffle.r.nodes.function.FunctionExpressionNode.DynamicFunctionExpressionNode


        } else if (node instanceof IfNode) {
            return IfNode.create(childSubs.get(0), childSubs.get(1), childSubs.get(2));
        } else if (node instanceof ConvertBooleanNode) {
            return ConvertBooleanNode.create(childSubs.get(0));
        } else if (node instanceof DynamicFunctionExpressionNode) {
            DynamicFunctionExpressionNode dfe = (DynamicFunctionExpressionNode) node;
            return substituteFunction((FunctionDefinitionNode) dfe.getCallTarget().getRootNode(), env);
        } else {
            assert false;
            return null;
        }
    }
View Full Code Here

TOP

Related Classes of com.oracle.truffle.r.nodes.function.FunctionExpressionNode.DynamicFunctionExpressionNode

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.