Process() public method

public Process ( Context context, EngineConfiguration conf ) : void
context Context
conf AspectSharp.Lang.AST.EngineConfiguration
return void
Exemplo n.º 1
0
		protected SemanticAnalizerStep Analize(EngineConfiguration conf, IStep next)
		{
			SemanticAnalizerStep analizer = new SemanticAnalizerStep();
			analizer.Next = next;
			_context = new Context();
			_context.Error += new ErrorDelegate(OnError);
			analizer.Process(_context, conf);
			return analizer;
		}