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

⟦5a708da69⟧ TextFile

    Length: 1053 (0x41d)
    Types: TextFile
    Names: »B«

Derivation

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

TextFile

with Lex, Error, Debug;
with Material_Description, Theater_Description, Spectacle_Description;
package body Shownet_File is

    procedure Parse (Success : in out Boolean) is
        Ok : Boolean := True;
    begin  
        Success := True;
        if Lex.Current_Token_Is (Lex.Materiel) then
            Debug.Put (1);
            Lex.Next;
            Material_Description.Parse (Ok);
        else
            Error.Append (49);  
            Success := False;
        end if;

        if Lex.Current_Token_Is (Lex.Theatre) then
            Debug.Put (100);
            Lex.Next;
            Theater_Description.Parse (Ok);
        else
            Debug.Put (101);
            Error.Append (50);  
            Success := False;
        end if;

        if Lex.Current_Token_Is (Lex.Spectacle) then
            Debug.Put (200);
            Lex.Next;
            Spectacle_Description.Parse (Ok);
        else
            Debug.Put (210);
            Error.Append (51);
            Success := False;
        end if;

    end Parse;

end Shownet_File;