removed lexer test function
This commit is contained in:
parent
7e03710779
commit
2349fb743f
3 changed files with 6 additions and 6 deletions
5
README.md
Normal file
5
README.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
|
||||||
|
# Dungeoneer
|
||||||
|
|
||||||
|
Dungeoneer is an extensible digital dice program written in C#.
|
||||||
|
|
|
@ -31,10 +31,6 @@ namespace Dungeoneer {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void LexTest(TokenSet input) {
|
|
||||||
Console.WriteLine(input);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,7 +10,6 @@ namespace Dungeoneer {
|
||||||
public static Dictionary<string, Command> ReplCommands = new Dictionary<string, Command> {
|
public static Dictionary<string, Command> ReplCommands = new Dictionary<string, Command> {
|
||||||
{ "new", (Command)Dungeoneer.Command.New },
|
{ "new", (Command)Dungeoneer.Command.New },
|
||||||
{ "roll", (Command)Dungeoneer.Command.Roll },
|
{ "roll", (Command)Dungeoneer.Command.Roll },
|
||||||
// { "lex", (Command)Dungeoneer.Command.LexTest }
|
|
||||||
// TODO: "with"?
|
// TODO: "with"?
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Reference in a new issue