using Toybox.System;
module TestFoo {
hidden var mFoo;
hidden function setFoo() {
mFoo = 42;
}
function printFoo() {
setFoo();
System.println(mFoo);
}
class FooCaller {
function callPrintFooFails() {
printFoo();
}
function callPrintFooWorks() {
TestFoo.printFoo();
}
}
}
Running this code works fine:
var caller = new TestFoo.FooCaller();
caller.callPrintFooWorks();
However, running this fails:
var caller = new TestFoo.FooCaller();
caller.callPrintFooFails();
You get the following exception
Could not find symbol mFoo.
Symbol Not Found Error
I could understand if calling `printFoo` generated a symbol not found error due to it requiring namespace qualification. But, the call succeeding and then triggering a later error accessing a variable off the stack seems like a bug to me. Thoughts?