Got error indicators in many internal files
Lauriichan opened this issue ยท 3 comments
As the title says I got error lines when generating the documentation with ProbeJS for my Modpack (Modrinth - might not be available yet because of review).
The errors share following pattern:
setSprites(<set-?>: Internal.TextureAtlasSprite_[]): void;
Every error has the <set-?>
part as parameter name.
If you need a log even though I couldn't see any issues inside of it let me know.
Did this end up getting fixed? I'm running into the same thing, using 1.20.1. Downgraded ProbeJS from 7.0.0 to 6.0.0 per #102 and I see <set-?>
in place of various single-argument names which makes the linter freak out for the rest of the file.
For a workaround: I did a find/replace in VSCode to turn all <set-?>
s into arg
which solved that issue and is simple to redo after every /probejs dump.
Now I'm finding two instances of there being a SHAPES_CACHE
object where all of the keys are integers, which the linter doesn't like.
I believe they're both coming from the mod Diagonal Fences (link).
The linter is happy after I did the arg replacement and removed the SHAPES_CACHE
lines.