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());
 }