Exemplo n.º 1
0
 public override void visit(exception_ident _exception_ident)
 {
 }
Exemplo n.º 2
0
		public override void visit(exception_ident _exception_ident)
		{
			DefaultVisit(_exception_ident);
			pre_do_visit(_exception_ident);
			visit(exception_ident.variable);
			visit(exception_ident.type_name);
			post_do_visit(_exception_ident);
		}
Exemplo n.º 3
0
 public virtual void visit(exception_ident _exception_ident)
 {
     DefaultVisit(_exception_ident);
 }
Exemplo n.º 4
0
 public virtual void visit(exception_ident _exception_ident)
 {
 }
Exemplo n.º 5
0
		public virtual void post_do_visit(exception_ident _exception_ident)
		{
		}
Exemplo n.º 6
0
 public override void visit(exception_ident _exception_ident)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 7
0
		public virtual void visit(exception_ident _exception_ident)
		{
		}
		public virtual void visit(exception_ident _exception_ident)
		{
			DefaultVisit(_exception_ident);
		}
Exemplo n.º 9
0
 public override void visit(exception_ident _exception_ident)
 {
     prepare_node(_exception_ident.variable, "variable");
     prepare_node(_exception_ident.type_name, "type_name");
 }
Exemplo n.º 10
0
		public override void visit(exception_ident _exception_ident)
		{
			executer.visit(_exception_ident);
			if (_exception_ident.variable != null)
				this.visit((dynamic)_exception_ident.variable);
			if (_exception_ident.type_name != null)
				this.visit((dynamic)_exception_ident.type_name);
		}