コード例 #1
0
 public void VisitDelegateCallSymbol(DelegateCallSymbol dg)
 {
     if (dg.Base != null)
         dg.Base.Accept(this);
     else
         GenUfcsAndStaticProperties(dg);
 }
コード例 #2
0
 public void VisitDelegateCallSymbol(DelegateCallSymbol dg)
 {
     if (dg.Base != null)
     {
         dg.Base.Accept(this);
     }
     else
     {
         GenUfcsAndStaticProperties(dg);
     }
 }
コード例 #3
0
		public void VisitDelegateCallSymbol(DelegateCallSymbol t)
		{
			AcceptType (t.Delegate);
		}
コード例 #4
0
 public ulong VisitDelegateCallSymbol(DelegateCallSymbol t)
 {
     return(1001713);
 }
コード例 #5
0
 public ISymbolValue VisitDelegateCallSymbol(DelegateCallSymbol t)
 {
     throw new NotImplementedException();
 }
コード例 #6
0
 public ISymbolValue VisitDelegateCallSymbol(DelegateCallSymbol dg)
 {
     return(new TypeValue(dg));
 }
コード例 #7
0
 public void VisitDelegateCallSymbol(DelegateCallSymbol t)
 {
     sb.Append(t.DeclarationOrExpressionBase.ToString());
 }