mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-21 05:18:38 +00:00
12 lines
325 B
C#
12 lines
325 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Cosmos.Compiler.XSharp {
|
|
public class TokenPatterns : Dictionary<TokenPattern, string> {
|
|
public void Add(TokenType[] aTokenTypes, string aCode) {
|
|
Add(new TokenPattern(aTokenTypes), aCode);
|
|
}
|
|
}
|
|
}
|