Ejemplo n.º 1
0
 /// <summary>
 /// Called for every GlowCommand found in the glow tree.
 /// </summary>
 /// <param name="glow">The GlowCommand to process.</param>
 /// <param name="path">The path of the element containing the GlowCommand.</param>
 protected abstract void OnCommand(GlowCommand glow, int[] path);
Ejemplo n.º 2
0
        object IGlowVisitor <object, object> .Visit(GlowCommand glow, object state)
        {
            OnCommand(glow, PathToArray());

            return(null);
        }