~alexreg/mathtexdotnet/0.1

« back to all changes in this revision

Viewing changes to TexDotNet/Semantics/ParseNodeCollection.cs

  • Committer: Alex Regueiro
  • Date: 2009-09-22 01:27:08 UTC
  • Revision ID: alexreg@gmail.com-20090922012708-08rzfuxv1gty8w9g
Added 'Tex' prefix to all appropiate classes in project.
Improved error handling in lexer and parser. (Redesigned error functionality around TexErrorSourceInfoException and ITexErrorSourceInfo).
Implemented TexWriter class.
Started design of TexComposer class.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
using System;
2
 
using System.Collections.Generic;
3
 
using System.Collections.ObjectModel;
4
 
using System.Linq;
5
 
using System.Text;
6
 
 
7
 
namespace TexDotNet
8
 
{
9
 
    public class ParseNodeCollection : Collection<ParseNode>
10
 
    {
11
 
        public ParseNodeCollection(IList<ParseNode> list)
12
 
            : base(list)
13
 
        {
14
 
        }
15
 
 
16
 
        public ParseNodeCollection()
17
 
            : base()
18
 
        {
19
 
        }
20
 
    }
21
 
}