Mono.CSharp.TryCatch.TryCatch C# (CSharp) Method

TryCatch() public method

public TryCatch ( Block block, List catch_clauses, Mono.CSharp.Location l, bool inside_try_finally ) : System
block Block
catch_clauses List
l Mono.CSharp.Location
inside_try_finally bool
return System
		public TryCatch (Block block, List<Catch> catch_clauses, Location l, bool inside_try_finally)
		{
			this.Block = block;
			this.Specific = catch_clauses;
			this.inside_try_finally = inside_try_finally;

			Catch c = catch_clauses [0];
			if (c.IsGeneral) {
				this.General = c;			
				catch_clauses.RemoveAt (0);
			}

			loc = l;
		}