예제 #1
0
 public OpInfo(string op, OpArity arity, int priority, OpAssoc assoc)
 {
     this.op       = op;
     this.arity    = arity;
     this.priority = priority;
     this.assoc    = assoc;
 }
예제 #2
0
파일: Operators.cs 프로젝트: nope/ioke
 private static void AddOpArity(string name, int arity, Dictionary<string, OpArity> current)
 {
     current[name] = new OpArity(name, arity);
 }
예제 #3
0
파일: OpKind.cs 프로젝트: 0xCM/arrows
 public ArityAttribute(OpArity Arity)
 => this.Arity = Arity;
예제 #4
0
파일: Operators.cs 프로젝트: tspring/ioke
 private static void AddOpArity(string name, int arity, Dictionary <string, OpArity> current)
 {
     current[name] = new OpArity(name, arity);
 }