From: Djomanix Date: Thu, 12 Jun 2014 19:46:23 +0000 (-0400) Subject: Added the 'run' method who is in charge of the infinite loop X-Git-Tag: v0.6.6~36^2~1 X-Git-Url: http://nitlanguage.org Added the 'run' method who is in charge of the infinite loop Signed-off-by: Djomanix --- diff --git a/lib/pnacl.nit b/lib/pnacl.nit index 3216b73..fde40f3 100644 --- a/lib/pnacl.nit +++ b/lib/pnacl.nit @@ -712,10 +712,16 @@ class PnaclApp # Checks if there is a dictionary in the queue, and if so the dictionary is handled automatically. fun check_dictionary `{ - while(1) { - NitHandleDictionary(); - } + NitHandleDictionary(); `} + + # Infinite loop on check_dictionary + fun run + do + loop + check_dictionary + end + end end redef interface Object