Inheritance: ResumableStatement
コード例 #1
0
ファイル: flowanalysis.cs プロジェクト: yayanyang/monodevelop
		public FlowBranchingTryFinally (FlowBranching parent,
					       ExceptionStatement stmt)
			: base (parent, BranchingType.Exception, SiblingType.Try,
				null, stmt.loc)
		{
			this.stmt = stmt;
		}
コード例 #2
0
ファイル: context.cs プロジェクト: jkells/mono
		public FlowBranchingException StartFlowBranching (ExceptionStatement stmt)
		{
			FlowBranchingException branching = new FlowBranchingException (CurrentBranching, stmt);
			current_flow_branching = branching;
			return branching;
		}