override internal void ClearTypeSystemBindings()
 {
     _annotations    = null;
     _entity         = null;
     _expressionType = null;
     if (null != _items)
     {
         _items.ClearTypeSystemBindings();
     }
 }
Example #2
0
 override internal void ClearTypeSystemBindings()
 {
     _annotations = null;
     _entity      = null;
     if (null != _arguments)
     {
         _arguments.ClearTypeSystemBindings();
     }
     if (null != _namedArguments)
     {
         _namedArguments.ClearTypeSystemBindings();
     }
 }
Example #3
0
 override internal void ClearTypeSystemBindings()
 {
     _annotations = null;
     _entity      = null;
     if (null != _modifier)
     {
         _modifier.ClearTypeSystemBindings();
     }
     if (null != _arguments)
     {
         _arguments.ClearTypeSystemBindings();
     }
     if (null != _body)
     {
         _body.ClearTypeSystemBindings();
     }
 }
Example #4
0
 override internal void ClearTypeSystemBindings()
 {
     _annotations    = null;
     _entity         = null;
     _expressionType = null;
     if (null != _clauses)
     {
         _clauses.ClearTypeSystemBindings();
     }
     if (null != _ending)
     {
         _ending.ClearTypeSystemBindings();
     }
     if (null != _cont)
     {
         _cont.ClearTypeSystemBindings();
     }
 }