/// <summary> /// Called for every GlowInvocationResult found in the glow tree. /// Since InvocationResult nodes can only be at the root level, /// there is no path parameter passed to this method. /// </summary> /// <param name="glow">The GlowInvocationResult to process.</param> protected abstract void OnInvocationResult(GlowInvocationResult glow);
object IGlowVisitor <object, object> .Visit(GlowInvocationResult glow, object state) { OnInvocationResult(glow); return(null); }