Consequences of the final state?

"c64zottel ." <[email protected]> Sun, 1 Jun 2014 16:00:21 +0200
Newsgroups gmane.comp.web.voice
Message-ID <CAL4YH=Mfws+as6WqRdWS1WS1xCmRymUE+YtzcFhxGV4eWUNkmA@mail.gmail.com>
Hello,

maybe I over read it, but nowhere seems an information, what happens
to events in a compound state, when it had already reached the final
state?

<state id="a">
  <state id="s">
    <transition event="d" target="f"/>
  </state>
  <final id="f"/>
  <transition event="e" target="x"/>
</state>
<state id="x"/>

Lets say, we entered s, so our configuration looks like: { a, s, scxml
}, now e occurs, where s doesn't provide a transition, but a does, we
would end up in { x, scxml }

My question is now, what is, if we are in f: { a, f, scxml } an e
occurs? is the event swallowed or passed up to a? That would kind of
defeat the purpose of final, or?