Tasks may be deleted by pressing 'Delete' button on the edit view.
An organization admin may delete a task entity, if the task is not claimed by anyone. Issue 695 fixed.
/** @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
}
}