Package org.openquark.cal.compiler.SourceModel.Expr

Examples of org.openquark.cal.compiler.SourceModel.Expr.DataCons


                    producer = super.getFunctionalAgent(var.getVarName());
                }
            }
           
            else if (argumentExpression instanceof DataCons) {
                DataCons cons = (DataCons)argumentExpression;
                producer = super.getFunctionalAgent(cons.getDataConsName());
            }
           
            else if (argumentExpression instanceof Application) {
                Application app = (Application)argumentExpression;
                processArgumentExpression(consumerName, argumentNumber, app.getNthExpression(0));
View Full Code Here

TOP

Related Classes of org.openquark.cal.compiler.SourceModel.Expr.DataCons

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.