|
|
DataMuseum.dkPresents historical artifacts from the history of: Rational R1000/400 Tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about Rational R1000/400 Tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T V
Length: 969 (0x3c9)
Types: TextFile
Names: »V«
└─⟦2f6cfab89⟧ Bits:30000547 8mm tape, Rational 1000, !projects 94-01-04
└─⟦d65440be7⟧ »DATA«
└─⟦this⟧
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;