AST.FuncDef.Create C# (CSharp) Метод

Create() публичный статический Метод

public static Create ( Option declnSpecs, Declr declr, Stmt body ) : FuncDef
declnSpecs Option
declr Declr
body Stmt
Результат FuncDef
        public static FuncDef Create(Option<DeclnSpecs> declnSpecs, Declr declr, Stmt body) =>
            new FuncDef(declnSpecs.IsSome ? declnSpecs.Value : DeclnSpecs.Empty, declr, body as CompoundStmt);