Hello,
I'm trying to figure out why a single error is split across more than one message callback during build, as an example:
namespace Test
{
class Main
{
t
}
}
produces 4 message callbacks:
1: Expected method or property
2: Instead found 't'
3: Unexpected end of file
4: While parsing namespace
I'm storing the errors in a vector as they're coming in and placing them into a list control and its looking weird with 2 errors producing 4 items in the list.
Is there a way to prevent this behaviour or perhaps find a way to combine error messages that link to the same error?
Thanks,