Changeset 2034 for to-imperative/trunk/compiler/rfpc.rf
- Timestamp:
- Jul 27, 2006, 8:40:44 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
to-imperative/trunk/compiler/rfpc.rf
r1960 r2034 25 25 $use "rfp_lex"; // rfp_lex.rfi 26 26 $use "rfp_parse"; // rfp_parse.rfi 27 $use "rfp_debug"; // rfp_debug.rfi28 27 $use "rfp_compile"; // rfp_compile.rfi 29 28 $use "rfp_asail_cpp"; //rfp_asail_cpp.rfi … … 198 197 <In-Table? &RFP-Options AS-TRANSFORMED>; 199 198 }, 200 {201 <In-Table? &RFP-Options DBG> =202 <Verbose "debug-text generation started">,203 <RFP-Debug e.Items> :: e.Items,204 <Verbose "debug-text generation finished">,205 e.Items;206 e.Items;207 } :: e.Items,208 199 { 209 200 <In-Table? &RFP-Options NO-TRANSFORM> = e.Items; … … 592 583 <Bind &Fun? (t.FName) (IMPORT FUNC? t.Pragma ((EVAR)) ((EVAR)))>; 593 584 }, 594 $fail;; 585 $fail; 586 { 587 <In-Table? &RFP-Options DBG> = 588 <Bind &Fun? ((Debug Stop?)) (IMPORT FUNC? (PRAGMA) ((EVAR)) ())>, 589 <Bind &Fun ((Debug Debug)) (IMPORT FUNC (PRAGMA) ((EVAR)) ())>;; 590 }; 595 591 }; 596 592 … … 684 680 }, 685 681 <Extract-Inputs e.items>; 686 e.items = e.items; 682 e.items = 683 { 684 <In-Table? &RFP-Options DBG> = <Bind &Includes (Debug) (BOOT)>;; 685 }, 686 e.items; 687 687 }; 688 688
Note: See TracChangeset
for help on using the changeset viewer.