Posted 20 years ago
by NSXDavid

I have a language that has constructions line this:
Blocks are created by keywords and closed by period (aka Clarion, for those with a looooong language memory). I'm working on the outlining now.... but I don't see how to handle the case in the above example. Is it possible to have the if->else one block and the else->. another block? The else both stops and starts an outlineing span... but OutliningNodeAction doesn't seem to support that concept.
-- David
if (something = somethingelse)
dosomething()
dosomethingelse()
else
dosomethingmore()
domorethingsthanbefore()
stopdoingthings()
.
-- David