DataMuseum.dkPresents historical artifacts from the history of: Rational R1000/400 Tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about Rational R1000/400 Tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - downloadIndex: ┃ B T ┃
Length: 1029 (0x405) Types: TextFile Names: »B«
└─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11 └─ ⟦129cab021⟧ »DATA« └─⟦this⟧
with Body_Description, Binary_Tree, Symbol; with Debug; package body Spectacle_Definition is procedure Parse (Success : in out Boolean) is N : Binary_Tree.Node; Name : constant String := "Main"; Ok : Boolean := True; begin N := new Binary_Tree.Node_Structure; Symbol.Add_Function (Name); Symbol.Set_Start_Point (Name, N); Body_Description.Parse (N.Right_Son, Ok); Success := Success and Ok; end Parse; procedure Generate (N : Binary_Tree.Node; T : in out Natural) is begin Debug.Put (1); if not Binary_Tree."=" (N.Right_Son, null) then case N.Right_Son.The_Type is when Binary_Tree.Null_Type => Generate (N.Right_Son, T); when Binary_Tree.Body_Type => Body_Description.Generate (N.Right_Son, T); when others => null; end case; end if; end Generate; end Spectacle_Definition;