コード例 #1
0
 public TypeReferanceResolveReference(Tpn.TypeProblem2.TypeReference type)
 {
     this.type = type ?? throw new ArgumentNullException(nameof(type));
 }
コード例 #2
0
ファイル: ConversionLayer.cs プロジェクト: Prototypist1/Tac
 public IFrontendType <IVerifiableType> Convert(Tpn.TypeSolution typeSolution, Tpn.TypeProblem2.TypeReference from, IEnumerable <Tpn.ITypeProblemNode> context)
 {
     // I don't think this is safe see:
     // {D27D98BA-96CF-402C-824C-744DACC63FEE}
     return(new WeakTypeReference(typeSolution.GetType(from, context)));
 }