Linting: Remove FIXMEs that I'm unlikely to do any time soon

This commit is contained in:
n loewen 2023-08-16 09:39:03 +01:00
parent 4dda5881ef
commit 5078efa1fe
1 changed files with 0 additions and 3 deletions

View File

@ -63,8 +63,6 @@ function decodeInstructions(line) {
// Handle label definitions
if (line.startsWith(LABEL_PREFIX)) {
// TODO: validate label
// validateLabel(line);
let label = line.substring(1); // strip label prefix
if (label in labels) {
@ -115,7 +113,6 @@ function decodeInstructions(line) {
// Handle references to labels
} else if (arg_str.startsWith(LABEL_PREFIX)) {
// TODO: validate label // validateLabel(line);
let label = arg_str.substring(1); // strip label prefix
arg_num = 0;