コード例 #1
0
ファイル: TypeDefinition.cs プロジェクト: rauldoblem/Tac
        public bool WeAreThem(IVerifiableType them, bool noTagBacks)
        {
            if (them is IMethodType method)
            {
                return(InputType.WeAreThem(method.InputType, false) && OutputType.TheyAreUs(method.OutputType, false));
            }

            if (noTagBacks)
            {
                return(false);
            }

            return(this.WeAreThem(this, true));
        }