ParsePointcutSignature() public method

public ParsePointcutSignature ( PointCutDefinition pointcut ) : void
pointcut AspectSharp.Lang.AST.PointCutDefinition
return void
Beispiel #1
0
		private void ParseSignature(XmlNode inner, PointCutDefinition def)
		{
			XmlNode signature = inner.SelectSingleNode("signature");
			StringReader reader = new StringReader(signature.InnerText);
			AspectLanguageLexer lexer = new AspectLanguageLexer(reader);
			AspectParser parser = new AspectParser(lexer);
			parser.ParsePointcutSignature(def);
		}