コード例 #1
0
ファイル: ExprFunc.cs プロジェクト: wangxiaoying/qpmodel
 public override void Bind(BindContext context)
 {
     base.Bind(context);
     type_ = args_()[0].type_;
 }
コード例 #2
0
ファイル: ExprFunc.cs プロジェクト: wangxiaoying/qpmodel
 public override void Bind(BindContext context)
 {
     base.Bind(context);
     type_ = args_()[0].type_;
     Debug.Assert(type_ is CharType || type_ is VarCharType);
 }
コード例 #3
0
 public override void Bind(BindContext context)
 {
     base.Bind(context);
     type_ = new IntType();
 }
コード例 #4
0
ファイル: ExprSubquery.cs プロジェクト: wangxiaoying/qpmodel
 public override void Bind(BindContext context)
 {
     bindQuery(context);
     type_ = new BoolType();
     markBounded();
 }
コード例 #5
0
 public override void Bind(BindContext context)
 {
     bindQuery(context);
     SetIsCacheable();
 }