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

⟦4595f0453⟧ TextFile

    Length: 845 (0x34d)
    Types: TextFile
    Names: »V«

Derivation

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

TextFile

with Message;  
with Table;
with Object;
package Scanner is

    type Token is (T_Avec, T_Pour, T_Prendre, T_Renvoyer, T_Integer,
                   T_Identifier, T_Keyword, T_Block_Open, T_Block_End,
                   T_Dot, T_Parenthese_Open, T_Parenthese_End,
                   T_Binary_Message, T_Eof, T_String, T_Unknown);

    type Special is private;
    procedure Open (Fichier_Name : String);
    procedure Next;  
    function Get_Line_Number return Natural;
    function Get_Token return Token;
    function Get_Value return Message.Tiny_String;
    function Get_Value return Object.Reference;
    function Get_Value return Message.Selector;
    function At_End return Boolean;
    procedure Close;
    procedure Set_Line_Number (To : Natural);
private
    type Special is (Pour, Avec, Prendre, Renvoyer, Non_Special);

end Scanner;