Expressive.Tests.Massive.InstructionCollectingVisitor.VisitInstruction C# (CSharp) Method

VisitInstruction() protected method

protected VisitInstruction ( InstructionElement instruction ) : IElement
instruction Expressive.Elements.InstructionElement
return IElement
        protected override IElement VisitInstruction(InstructionElement instruction)
        {
            this.OpCodes.Add(instruction.OpCode);
            return base.VisitInstruction(instruction);
        }