class {
(:debug) const IS_RELEASE = false;
(:release) const IS_RELEASE = true;
function foo() as Void {
var s1 = "release: " + IS_RELEASE; // The operator '+' is undefined for the argument type '$.Toybox.Lang.Boolean'.
var b = IS_RELEASE;...