Kaleidoscope.Chapter7.PrototypeAST.PrototypeAST C# (CSharp) Method

PrototypeAST() public method

public PrototypeAST ( string name, IEnumerable args, bool isOp, int precedence ) : System
name string
args IEnumerable
isOp bool
precedence int
return System
        public PrototypeAST(string name, IEnumerable<string> args, bool isOp, int precedence)
        {
            this.Name = name;
            this.Args = new List<string>(args);
            this.IsOperator = isOp;
            this.Precedence = precedence;
        }