AspectSharp.Lang.Steps.Semantic.SemanticAnalizerBase.AssertNotNull C# (CSharp) Méthode

AssertNotNull() protected méthode

protected AssertNotNull ( NodeBase node, object value, String message ) : void
node AspectSharp.Lang.AST.NodeBase
value object
message String
Résultat void
		protected void AssertNotNull( NodeBase node, object value, String message )
		{
			if (value == null)
			{
				RaiseErrorEvent( node.LexicalInfo, message );
			}
		}