コード例 #1
0
ファイル: AST.cs プロジェクト: AutomataDotNet/Automata
 //public QueryKind queryKind;
 public QueryDef(FastToken token)
     : base(DefKind.Query)
 {
     this.func = new FuncSymbol(token, 0);
 }
コード例 #2
0
ファイル: AST.cs プロジェクト: AutomataDotNet/Automata
 public BuiltinExp(FastToken func, int arity)
 {
     this.func = new FuncSymbol(func, arity);
     this.arity = arity;
 }
コード例 #3
0
ファイル: AST.cs プロジェクト: AutomataDotNet/Automata
 public AppExp(FastToken func, IEnumerable<FExp> args)
 {
     this.args = new List<FExp>(args);
     this.func = new FuncSymbol(func, this.args.Count);
     this._sort = null;
     this.isTranDef = false;
     this.isLangDef = false;
 }