ABT.FuncDef.FuncDef C# (CSharp) 메소드

FuncDef() 공개 메소드

public FuncDef ( String name, StorageClass scs, FunctionType type, Stmt stmt ) : System
name String
scs StorageClass
type FunctionType
stmt Stmt
리턴 System
        public FuncDef(String name, StorageClass scs, FunctionType type, Stmt stmt) {
            this.name = name;
            this.scs  = scs;
            this.type = type;
            this.stmt = stmt;
        }