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: ┃ T V

⟦9b9247850⟧ TextFile

    Length: 942 (0x3ae)
    Types: TextFile
    Names: »V«

Derivation

└─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11
    └─ ⟦129cab021⟧ »DATA« 
        └─⟦this⟧ 
└─⟦2f6cfab89⟧ Bits:30000547 8mm tape, Rational 1000, !projects 94-01-04
    └─ ⟦d65440be7⟧ »DATA« 
        └─⟦this⟧ 

TextFile

with Text_Io;
with Standard_String;

package Lexical is

    type Token is (L_Materiel, L_Begin, L_End, L_Fait, L_Binaire, L_Fugitif,
                   L_Temporel, L_Acteurs, L_Est, L_Sur, L_Station,
                   L_Scenario, L_Scene, L_Dans, L_Faire, L_Repeter,
                   L_Fois, L_Repeter_Ad_Eternam, L_Toutes, L_Les,
                   L_Pendant, L_De, L_Vers, L_En, L_Experience, L_Effet,
                   L_Enchainement, L_Groupe, L_Hasard, L_Avec, L_Sans, L_Sub,
                   L_Plus, L_Equal, L_Star, L_Eof, L_D_Point, L_Point,
                   L_Open, L_Close, L_Number, L_Temps, L_Unk, L_Id);

    procedure Open (Name_File : String);
    procedure Close_The_File;
    function At_End return Boolean;  
    procedure Next;
    function Get_Token return Token;
    function Get_Value return Standard_String.Object;  
    function Keyword_To_Token (A_String : Standard_String.Object) return Token;

end Lexical;