On 2017-07-27 16:45, Martin Schreiber wrote:
Exception handling has been implemented in MSElang

Are you planning on implementing try..finally..except block. A all in one syntax that saves you a ton of typing and indentation?

eg:

  try
    // something here
  finally
    // clean-up code here
  except
    // in case an exception occurs
  end;


The above is the equivalent to...


  try
    try
      // something here
    except
       // in case an exception occurrs
    end;
  finally
    // clean-up code here
  end;



Regards,
  Graeme

--
fpGUI Toolkit - a cross-platform GUI toolkit using Free Pascal
http://fpgui.sourceforge.net/

My public PGP key:  http://tinyurl.com/graeme-pgp

------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk

Reply via email to