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: ┃ B T

⟦3fe03e9b6⟧ TextFile

    Length: 1186 (0x4a2)
    Types: TextFile
    Names: »B«

Derivation

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

TextFile

separate (Syntaxe_1)
function Parse_Liste_Materiel return Boolean is
    Ok : Boolean := True;
begin
    Lex.Lex_Next;
    while Token.Object'Pos (Lex.Lex_Get_Token) =
             Token.Object'Pos (Token.L_Id) loop
        Lex.Lex_Next;
        if Token.Object'Pos (Lex.Lex_Get_Token) =
           Token.Object'Pos (Token.L_Avec) then
            Lex.Lex_Next;
            if Parse_Liste_Acteur then
                Ok := Ok and True;
            else
                Traite_Erreur.Parse_Erreur (Traite_Erreur.Err_Liste_Act,
                                            Traite_Erreur.Follow_Liste_Act);
                Ok := False;
            end if;
            if Token.Object'Pos (Lex.Lex_Get_Token) =
               Token.Object'Pos (Token.L_Fin) then
                Lex.Lex_Next;
                if Token.Object'Pos (Lex.Lex_Get_Token) =
                   Token.Object'Pos (Token.L_Id) then
                    Lex.Lex_Next;
                else
                    Ok := False;
                end if;
            else
                Ok := False;
            end if;
        else
            Ok := False;
        end if;
    end loop;
    return Ok;
end Parse_Liste_Materiel;