Browse Source

Expr expr 属性改为 protected, 便于子类使用

James 4 years ago
parent
commit
287f703dde
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/main/java/com/jfinal/template/stat/ast/Output.java

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

@@ -35,7 +35,7 @@ import com.jfinal.template.stat.Scope;
  */
  */
 public class Output extends Stat {
 public class Output extends Stat {
 	
 	
-	private Expr expr;
+	protected Expr expr;
 	
 	
 	public Output(ExprList exprList, Location location) {
 	public Output(ExprList exprList, Location location) {
 		if (exprList.length() == 0) {
 		if (exprList.length() == 0) {