Rename queues to fit const naming convention

This commit is contained in:
Dominik Reh
2023-01-29 16:40:04 +01:00
parent 8e14221739
commit 29d1e7212d
3 changed files with 8 additions and 8 deletions

View File

@@ -39,9 +39,9 @@ var umiPreviousTags = [];
/// Similar to a callback system, but primitive.
// Queues
const afterInsertQueue = [];
const afterSetupQueue = [];
const afterConfigChangeQueue = [];
const QUEUE_AFTER_INSERT = [];
const QUEUE_AFTER_SETUP = [];
const QUEUE_AFTER_CONFIG_CHANGE = [];
// List of parsers to try
const parsers = [];
const PARSERS = [];