mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 04:48:53 +00:00
16 lines
391 B
C#
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;
|
|
}
|
|
}
|