ItsDeltin / Overwatch-Script-To-Workshop

Converts scripts to Overwatch workshops.
208 stars 26 forks source link

Ignore missing element errors when the source type is unknown. #329

Open ItsDeltin opened 3 years ago

ItsDeltin commented 3 years ago
// 'abcd' does not exist, type of 'x' is unknown.
define x = abcd;
// Currently this will add another error, change it to be ignored until the previous problem is solved.
x.Y();

Adjusting code where x is declared will cause errors to pop everywhere when the issue focus should be at the declaration.