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

⟦42b49ad18⟧ TextFile

    Length: 819 (0x333)
    Types: TextFile
    Names: »B«

Derivation

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

TextFile

with Scanner;
with Object;
with List;  
with Bounded_String;

package body Arguments is

    procedure Parse (N : in out Block.Node;
                     Ident : in out Object.Unary;
                     Kwd : in out Object.Unary;
                     Error : out Boolean) is
        Failed : Boolean := False;
        use Scanner;
    begin  
        if Arguments.Is_First (Scanner.Get_Token) then
            Scanner.Next;
            List.Parse (N, Ident, Kwd, Failed);
            if not Failed and then
               Bounded_String.Image (Scanner.Get_Value) = "." then
                Scanner.Next;
            end if;
        end if;
        Error := Failed;
    end Parse;

    function Is_First (T : Scanner.Token) return Boolean is
    begin
        return List.Is_First (T);
    end Is_First;

end Arguments;