浏览代码

'Then' now optional for both one-liner and blocks Ifs.

Mark Sibly 9 年之前
父节点
当前提交
8f0d48a5ae
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3 1
      src/mx2new/parser.monkey2

+ 3 - 1
src/mx2new/parser.monkey2

@@ -687,9 +687,11 @@ Class Parser
 			
 			
 			cond=ParseExpr()
 			cond=ParseExpr()
 			
 			
+			CParse( "then" )
+			
 			block=CParseEol()
 			block=CParseEol()
 			
 			
-			If Not block CParse( "then" )
+'			If Not block CParse( "then" )
 			
 			
 		Catch ex:ParseEx
 		Catch ex:ParseEx