Package org.erlide.util.erlang

Examples of org.erlide.util.erlang.Signature


        Signature[] type;
        type = Signature.parse(signature);
        if (type == null) {
            type = new Signature[args0.length];
            for (int i = 0; i < args0.length; i++) {
                type[i] = new Signature('x');
            }
        }
        if (type.length != args0.length) {
            throw new SignatureException("Signature doesn't match parameter number: "
                    + type.length + "/" + args0.length);
View Full Code Here

TOP

Related Classes of org.erlide.util.erlang.Signature

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.