Пример #1
0
        static void TokenTerm(out Graph g)
        {
            Graph g2;

            TokenFactor(out g);
            while (StartOf(16))
            {
                TokenFactor(out g2);
                Graph.MakeSequence(g, g2);
            }
            if (la.kind == 37)
            {
                Get();
                Expect(28);
                TokenExpr(out g2);
                Graph.SetContextTrans(g2.l); Graph.MakeSequence(g, g2);
                Expect(29);
            }
        }