Boo.Lang.Compiler.TypeSystem.AnonymousCallablesManager.GetCallableType C# (CSharp) Method

GetCallableType() public method

public GetCallableType ( CallableSignature signature ) : AnonymousCallableType
signature CallableSignature
return AnonymousCallableType
        public AnonymousCallableType GetCallableType(CallableSignature signature)
        {
            AnonymousCallableType type = GetCachedCallableType(signature);

            if (type == null)
            {
                type = new AnonymousCallableType(TypeSystemServices, signature);
                _cache.Add(signature, type);
            }
            return type;
        }

Same methods

AnonymousCallablesManager::GetCallableType ( IMethod method ) : AnonymousCallableType

Usage Example

Example #1
0
 public ICallableType GetCallableType(CallableSignature signature)
 {
     return(_anonymousCallablesManager.GetCallableType(signature));
 }