Exemplo n.º 1
0
 public virtual void visit(exception_handler_list _exception_handler_list)
 {
     DefaultVisit(_exception_handler_list);
 }
Exemplo n.º 2
0
 public override void visit(exception_handler_list _exception_handler_list)
 {
     get_count(_exception_handler_list.handlers);
 }
Exemplo n.º 3
0
		public virtual void post_do_visit(exception_handler_list _exception_handler_list)
		{
		}
Exemplo n.º 4
0
		public override void visit(exception_handler_list _exception_handler_list)
		{
			DefaultVisit(_exception_handler_list);
			pre_do_visit(_exception_handler_list);
			for (int i = 0; i < handlers.Count; i++)
				visit(exception_handler_list.handlers[i]);
			post_do_visit(_exception_handler_list);
		}
Exemplo n.º 5
0
 public virtual void visit(exception_handler_list _exception_handler_list)
 {
 }
Exemplo n.º 6
0
 public override void visit(exception_handler_list _exception_handler_list)
 {
     throw new NotImplementedException();
 }
		public virtual void visit(exception_handler_list _exception_handler_list)
		{
			DefaultVisit(_exception_handler_list);
		}
Exemplo n.º 8
0
 public override void visit(exception_handler_list _exception_handler_list)
 {
     prepare_collection(_exception_handler_list.handlers, "handlers");
 }
Exemplo n.º 9
0
		public override void visit(exception_handler_list _exception_handler_list)
		{
			executer.visit(_exception_handler_list);
			if (_exception_handler_list.handlers != null)
			foreach (dynamic x in _exception_handler_list.handlers)
				if(x != null)
					this.visit(x);
		}