package runtime // Event represents lifecycle events during interpretation. type Event int const ( // StartEvent is emitted before interpretation begins. StartEvent Event = iota // StepEvent is emitted after each interpretation step. StepEvent // StopEvent is emitted after interpretation completes. StopEvent )