Some functions which applies to scoped tags in general moved from TaskTag to Task model.
Also, some stylish and whitespace changes and docstrings added.
/** @constructor */
function Foo() {
var bar = 1;
bar = 2; // redefining a private
this.baz = 1;
baz = 2; // global
/** a private */
var blap = {
/** in here */
tada: 1
}
}