DataMuseum.dk

Presents historical artifacts from the history of:

Rational R1000/400 Tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about Rational R1000/400 Tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download
Index: ┃ B T

⟦c5756e568⟧ TextFile

    Length: 1029 (0x405)
    Types: TextFile
    Names: »B«

Derivation

└─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11
    └─ ⟦129cab021⟧ »DATA« 
        └─⟦this⟧ 

TextFile

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;