Package Rakudo.Runtime

Examples of Rakudo.Runtime.DefinednessConstraint


                if (arg.getSTable().WHAT != type && type != null)
                {
                    typeMismatch = true;
                    break;
                }
                DefinednessConstraint definedness = candidate.Sig.Parameters[i].Definedness;
                if (definedness != DefinednessConstraint.None)
                {
                    boolean argDefined = arg.getSTable().REPR.defined(null, arg);
                    if (definedness == DefinednessConstraint.DefinedOnly && !argDefined ||
                        definedness == DefinednessConstraint.UndefinedOnly && argDefined)
View Full Code Here

TOP

Related Classes of Rakudo.Runtime.DefinednessConstraint

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.