protected PCondIsFixnumA1QL(PrimitiveIsFixnumA1 predicate, Quotation consequent, LexicalVariable alternative) : base(predicate, consequent, alternative) { }
protected PCondIsFixnumA1Q(PrimitiveIsFixnumA1 predicate, Quotation consequent, SCode alternative) : base(predicate, consequent, alternative) { this.consequentValue = consequent.Quoted; }
internal static SCode Make(PrimitiveIsFixnumA1 predicate, Quotation consequent, SCode alternative) { return (alternative is LexicalVariable) ? PCondIsFixnumA1QL.Make (predicate, consequent, (LexicalVariable) alternative) : (alternative is Quotation) ? PCondIsFixnumA1QQ.Make (predicate, consequent, (Quotation) alternative) : new PCondIsFixnumA1Q (predicate, consequent, alternative); }
protected PCondIsFixnumA1LQ(PrimitiveIsFixnumA1 predicate, LexicalVariable consequent, Quotation alternative) : base(predicate, consequent, alternative) { this.alternativeValue = alternative.Quoted; }
internal static SCode Make(PrimitiveIsFixnumA1 predicate, LexicalVariable consequent, Quotation alternative) { return new PCondIsFixnumA1LQ (predicate, consequent, alternative); }
protected PCondIsFixnumA1(PrimitiveIsFixnumA1 predicate, SCode consequent, SCode alternative) : base(predicate, consequent, alternative) { }
protected PCondIsFixnumA1L(PrimitiveIsFixnumA1 predicate, LexicalVariable consequent, SCode alternative) : base(predicate, consequent, alternative) { this.consequentName = consequent.Name; this.consequentDepth = consequent.Depth; this.consequentOffset = consequent.Offset; }
protected PCondIsFixnumA1SQ(PrimitiveIsFixnumA1 predicate, SCode consequent, Quotation alternative) : base(predicate, consequent, alternative) { this.alternativeValue = alternative.Quoted; }
protected PCondIsFixnumA1SL(PrimitiveIsFixnumA1 predicate, SCode consequent, LexicalVariable alternative) : base(predicate, consequent, alternative) { this.alternativeName = alternative.Name; this.alternativeDepth = alternative.Depth; this.alternativeOffset = alternative.Offset; }
internal static SCode Make(PrimitiveIsFixnumA1 predicate, Quotation consequent, Quotation alternative) { if (consequent.Quoted == alternative.Quoted) { Debug.WriteLine ("; Optimize (if <expr> <literal> <literal>) => (begin <expr> <literal>)"); return Sequence2.Make (predicate, consequent); } else if (Configuration.EnableTrueUnspecific && consequent.Quoted == Constant.Unspecific) { Debug.WriteLine ("; Optimize (if <expr> <unspecific> <literal>) => (begin <expr> <literal>)"); return Sequence2.Make (predicate, alternative); } else if (Configuration.EnableTrueUnspecific && alternative.Quoted == Constant.Unspecific) { Debug.WriteLine ("; Optimize (if <expr> <literal> <unspecific>) => (begin <expr> <literal>)"); return Sequence2.Make (predicate, consequent); } throw new NotImplementedException (); }
protected PCondIsFixnumA1QQ(PrimitiveIsFixnumA1 predicate, Quotation consequent, Quotation alternative) : base(predicate, consequent, alternative) { }
internal static SCode Make(PrimitiveIsFixnumA1 predicate, Quotation quotation, LexicalVariable alternative) { throw new NotImplementedException (); }