Mono.CSharp.LocalVariable.IsThisAssigned C# (CSharp) 메소드

IsThisAssigned() 공개 메소드

public IsThisAssigned ( BlockContext ec, Block block ) : bool
ec BlockContext
block Block
리턴 bool
		public bool IsThisAssigned (BlockContext ec, Block block)
		{
			if (VariableInfo == null)
				throw new Exception ();

			if (!ec.DoFlowAnalysis || ec.CurrentBranching.IsAssigned (VariableInfo))
				return true;

			return VariableInfo.TypeInfo.IsFullyInitialized (ec, VariableInfo, block.StartLocation);
		}