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

AssertKeyExists() protected méthode

protected AssertKeyExists ( IDictionary names, NodeBase node, object key, String message ) : void
names IDictionary
node AspectSharp.Lang.AST.NodeBase
key object
message String
Résultat void
		protected void AssertKeyExists( IDictionary names, NodeBase node, object key, String message )
		{
			if (!names.Contains(key))
			{
				RaiseErrorEvent( node.LexicalInfo, message );
			}
		}
	}