|
|
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: B T
Length: 664 (0x298)
Types: TextFile
Names: »B«
└─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11
└─⟦129cab021⟧ »DATA«
└─⟦this⟧
separate (Parse)
procedure Parse_Type_Actor (Ok : out Boolean;
The_Type : out Element.Element_Type) is
begin
Ok := True;
Text_Io.Put_Line ("parse_type_actor");
case Lex.Get_Token is
when L_Binaire =>
The_Type := Element.Binaire;
Lex.Next;
when L_Discret =>
The_Type := Element.Discret;
Lex.Next;
when L_Fugitif =>
The_Type := Element.Fugitif;
Lex.Next;
when L_Temporel =>
The_Type := Element.Temporel;
Lex.Next;
when others =>
Ok := False;
end case;
end Parse_Type_Actor;