3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-10-01 17:16:39 +02:00

Plugins/Plang: rename Grammar to ParseRules

This commit is contained in:
Pragmatic Software 2022-01-03 15:47:30 -08:00
parent 1fc75863e3
commit 731a95ef11
2 changed files with 3 additions and 3 deletions

View File

@ -21,7 +21,7 @@ sub initialize {
# require all the Plang .pm modules for Module::Refresh
require "$path/Interpreter.pm";
require "$path/AstInterpreter.pm";
require "$path/Grammar.pm"; # FIXME: Module::Refresh doesn't like this one
require "$path/ParseRules.pm"; # FIXME: Module::Refresh doesn't like this one
require "$path/Parser.pm";
require "$path/Lexer.pm";
require "$path/Types.pm";

View File

@ -25,8 +25,8 @@ use PBot::Imports;
# These are set by the /misc/update_version script
use constant {
BUILD_NAME => "PBot",
BUILD_REVISION => 4430,
BUILD_DATE => "2022-01-01",
BUILD_REVISION => 4432,
BUILD_DATE => "2022-01-03",
};
sub initialize {}