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

⟦5ac2fe809⟧ TextFile

    Length: 1437 (0x59d)
    Types: TextFile
    Names: »V«

Derivation

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

TextFile

with Easy_Y;
with Object;

package Bug_Report is

    procedure Supervisor (The_File : String);

    procedure Put (The_String : String);
    procedure Open (X, Y : Object.Index; Screen : String);
    procedure Close;

    procedure Print (Message : String);
    procedure Print (Message : String; Ligne : Object.Index);
    procedure Print (Message : String;
                     Objet : Object.Tiny_String;
                     Ligne : Object.Index);

    Identifier_Is_Missing : exception;
    Brace_Is_Missing : exception;
    Point_Is_Missing : exception;
    Parenthesis_Is_Missing : exception;
    Prendre_Is_Missing : exception;
    Unexpected_Token : exception;
    Boolean_Bad_Type : exception;
    Integer_Bad_Type : exception;
    String_Bad_Type : exception;
    Block_Bad_Type : exception;
    Turtle_Bad_Type : exception;
    Pen_Bad_Type : exception;
    Window_Bad_Type : exception;
    Undefined_Identifier : exception;
    Unknown_Unary_Message : exception;
    Unknown_Binary_Message : exception;
    Unknown_Keyword_Message : exception;
    Mismatch_Parameters : exception;
    Full_Block_Table : exception;
    Full_String_Table : exception;
    Full_Turtle_Table : exception;
    Full_Pen_Table : exception;
    Full_Window_Table : exception;
    Divide_By_Zero : exception;
private
    Error_Window : Easy_Y.Window_Type;
    The_Width : Object.Index := 1080;
    The_Height : Object.Index := 100;
end Bug_Report;