I've been having some challenges with EFS / eSignal. In short, I'm a little concerned about the quality/maturity of the technology. I'd LOVE it too work flawlessly. I really feel it has incredible potential.
Perhaps I'm missing something; but, I was very surprised when neither the syntax checker, nor the advanced chart error caught the following syntax error when parsing an if statement:
if (20 > 10 (10 != 3) ) {
debugPrint("error here\n");
}
/*
// SYNTACTICALLY CORRECT EXAMPLE
if (20 > 10 && (10 != 3) ) {
debugPrint("expected\n");
}
*/
This is a simplified version of something that I found nestled in a more complex strategy that was ultimately skewing my numbers.
Can any one else confirm this issue? What is the proper channel for feeding bugs/issues back to the development team? Anyone know how I can learn more about the product's release schedule... etc.
Attached is a simple EFS file to test the above issue with...
Thanks,
M
Perhaps I'm missing something; but, I was very surprised when neither the syntax checker, nor the advanced chart error caught the following syntax error when parsing an if statement:
if (20 > 10 (10 != 3) ) {
debugPrint("error here\n");
}
/*
// SYNTACTICALLY CORRECT EXAMPLE
if (20 > 10 && (10 != 3) ) {
debugPrint("expected\n");
}
*/
This is a simplified version of something that I found nestled in a more complex strategy that was ultimately skewing my numbers.
Can any one else confirm this issue? What is the proper channel for feeding bugs/issues back to the development team? Anyone know how I can learn more about the product's release schedule... etc.
Attached is a simple EFS file to test the above issue with...
Thanks,
M
Comment