1
0
Fork 0

Add `path` option to `ScriptLanguageExtension::_validate`

This commit is contained in:
voidedWarranties 2023-10-22 21:49:34 -07:00
parent f8818f85e6
commit e8309dd192
1 changed files with 3 additions and 0 deletions

View File

@ -313,6 +313,9 @@ public:
ERR_CONTINUE(!err.has("message"));
ScriptError serr;
if (err.has("path")) {
serr.path = err["path"];
}
serr.line = err["line"];
serr.column = err["column"];
serr.message = err["message"];