示例#1
0
文件: Expr.cs 项目: taiab/nledger
 public override void Compile(Scope scope)
 {
     if (!IsCompiled && Op != null)
     {
         Op = Op.Compile(scope);
         base.Compile(scope);
     }
 }