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

⟦f73be2e5b⟧ TextFile

    Length: 930 (0x3a2)
    Types: TextFile
    Names: »B«

Derivation

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

TextFile

with Lex2;
with Token;
use Token;
with Symbol_Table;
package body Abstract_Tree_Expression is

    function Create_Node (The_Left, The_Right : in P_Node) return P_Node is
    begin
        return new Node'(A_Token => One_Operator,
                         The_Operator => Character'Value (Lex2.Get_Value),
                         Left => The_Left,
                         Right => The_Right);
    end Create_Node;

    function Create_Foliage return P_Node is
    begin
        return new Node'(A_Token => L_Nbr,
                         Value => Natural'Value (Lex2.Get_Value));
    end Create_Foliage;

    function Create_Foliage
                (The_Access_Table : in Symbol_Table.A_Tree) return P_Node is
    begin
        return new Node'(A_Token => L_Id,
                         The_Name => Lex2.Get_Value,
                         The_Access => The_Access_Table);
    end Create_Foliage;

end Abstract_Tree_Expression;