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

⟦b3801008a⟧ TextFile

    Length: 673 (0x2a1)
    Types: TextFile
    Names: »V«

Derivation

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

TextFile

package Scanner is

    type Token is (L_Unknown, L_Integer, L_Identifier, L_String,
                   L_Keyword, L_Openbracket, L_Closebracket,
                   L_Dot, L_Openparenthesis, L_Closeparenthesis,
                   L_Binarymsg, L_Reserved, L_Comment, L_Eof);


    -- mise en route de l'analyseur lexical
    procedure Open (File_Name : String);


    -- renvoi VRAI si fin de l'analyseyr lexical
    function At_End return Boolean;


    -- analyse lexicale du symbole suivant
    procedure Next;


    -- retourne la chaine courante
    function Get_Value return String;


    -- retourne le token courant
    function Get_Token return Token;

end Scanner;