Пример #1
0
        public void ToReadOnlyList()
        {
            var        table = new SymbolTable();
            FullSymbol f     = FullSymbol.Create(table, "a.b.c.d");

            XAssert.AreEqual("a.b.c.d", string.Join(".", f.ToReadOnlyList(table).Select(atom => atom.ToString(table.StringTable))));
        }