浏览代码

jfinal 4.8

James 6 年之前
父节点
当前提交
79d9630ad2

+ 1 - 0
src/main/java/com/jfinal/template/stat/ast/Set.java

@@ -49,6 +49,7 @@ public class Set extends Stat {
 				throw new ParseException("#set directive only supports assignment expressions", location);
 				throw new ParseException("#set directive only supports assignment expressions", location);
 			}
 			}
 		}
 		}
+		
 		this.expr = exprList.getActualExpr();
 		this.expr = exprList.getActualExpr();
 	}
 	}
 	
 	

+ 1 - 0
src/main/java/com/jfinal/template/stat/ast/SetGlobal.java

@@ -46,6 +46,7 @@ public class SetGlobal  extends Stat {
 				throw new ParseException("#setGlobal directive only supports assignment expressions", location);
 				throw new ParseException("#setGlobal directive only supports assignment expressions", location);
 			}
 			}
 		}
 		}
+		
 		this.expr = exprList.getActualExpr();
 		this.expr = exprList.getActualExpr();
 	}
 	}
 	
 	

+ 1 - 0
src/main/java/com/jfinal/template/stat/ast/SetLocal.java

@@ -47,6 +47,7 @@ public class SetLocal  extends Stat {
 				throw new ParseException("#setLocal directive only supports assignment expressions", location);
 				throw new ParseException("#setLocal directive only supports assignment expressions", location);
 			}
 			}
 		}
 		}
+		
 		this.expr = exprList.getActualExpr();
 		this.expr = exprList.getActualExpr();
 	}
 	}