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

⟦84ccc8b27⟧ TextFile

    Length: 969 (0x3c9)
    Types: TextFile
    Names: »V«

Derivation

└─⟦2f6cfab89⟧ Bits:30000547 8mm tape, Rational 1000, !projects 94-01-04
    └─ ⟦d65440be7⟧ »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_Bloc_Open, T_Bloc_End,
                   T_Dot, T_Parenthese_Open, T_Parenthese_End,
                   T_Binary_Message, T_Eof, T_String, T_Et, T_Ou, T_Unknown);

    type Special is private;
    procedure Open (Fichier_Name : String);
    procedure Next;  
    function Get_Line_Number return Integer;
    function Get_Token return Token;
    function Get_Value return Message.Tiny_String;
    function Get_Value return String;
    function Get_Value return Message.Selector;
    function Get_Value return Object.Reference;
    procedure Get_Value (Current_Table : in out Table.Symbol_Kind;
                         S : out Message.Tiny_String);
    function At_End return Boolean;
    procedure Close;
private
    type Special is (Pour, Avec, Prendre, Renvoyer, Non_Special);

end Scanner;