Working on an Angular 10 project in visual studio code, I've encountered a strange issue. In the /app/_model/ folder, I have classes 'a', 'b', and 'c'. When running the application in MS Edge, I noticed that only classes 'a' and 'c' are loaded during debugging, while class 'b' seems to be missing. Setting a breakpoint in class 'b' results in an 'unbound breakpoint' error.
Despite this, all changes made to class 'b' in VS Code reflect in the code and can be accessed from components. However, during runtime, attempting to call a method like 'test' inside class 'b' throws the error: TypeError: _a.test is not a function. Additionally, the app appears to be using an older version of class 'b' without any clear source.
It's quite perplexing why these issues are specific to class 'b' and have suddenly surfaced. This particular class had been functioning correctly just a week ago, making the situation even stranger.
Any insights or suggestions?