ClosureExpression {SMRUCC.Rsharp.Interpreter.ExecuteEngine.ExpressionSymbols.Closure} | .NET clr documentation |
Is a kind of expression collection which consist with multiple expression lines. (其实就是一段拥有自己的Environment的没有名称的匿名函数)
# namespace SMRUCC.Rsharp.Interpreter.ExecuteEngine.ExpressionSymbols.Closure
export class ClosureExpression extends Expression {
bodySize: integer;
expressionName: ExpressionTypes;
isCallable: boolean;
isEmpty: boolean;
type: TypeCodes;
}
expressionName
: ExpressionTypestype
: TypeCodes