Cosmos/source2/Compiler/Cosmos.XSharp/TokenList.cs
kudzu_cp f444a4f08e
2012-06-14 01:48:28 +00:00

16 lines
391 B
C#

using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
namespace Cosmos.Compiler.XSharp {
public class TokenList : ReadOnlyCollection<Token> {
public TokenList(List<Token> aList)
: base(aList) {
Pattern = new TokenPattern(this);
}
public readonly TokenPattern Pattern;
}
}