Sort tokens within an enum
This allows us to keep a specific ordering regardless of the token order in the input file (much friendlier for source control!)
This commit is contained in:
parent
1b937b48f8
commit
6f4530f8a8
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ namespace Bind.Structures
|
|||
set { _type = value; }
|
||||
}
|
||||
|
||||
Dictionary<string, Constant> _constant_collection = new Dictionary<string, Constant>();
|
||||
SortedDictionary<string, Constant> _constant_collection = new SortedDictionary<string, Constant>();
|
||||
|
||||
public IDictionary<string, Constant> ConstantCollection
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue