- (fixed) type checker now validates if/while/for/until types
I'm not sure what this consists of, exactly. I thought it refered to the bug(?) that relates to a lack of overloading in operators like "&&". To quickly re-explain the situation;
//this is valid (duh)
if (true) <<<"yay">>>;
//so is this (relevant in detecting the start of the session or zero-length durations)
if (now) <<<"yay">>>;
//so I feel this should be too, yet it isn't
if (now && true) <<<"yay">>>;