1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
function NoEffectsDeclaration () {
this.foo = 1;
const mutateNested = () => this.bar = 1;
mutateNested();
if ( globalThis.condition ) {
this.baz = 1;
}
}
const a = new NoEffectsDeclaration();
const NoEffectsExpression = function () {
this.foo = 1;
const mutateNested = () => this.bar = 1;
mutateNested();
if ( globalThis.condition ) {
this.baz = 1;
}
};
const b = new NoEffectsExpression();
function mutateThis () {
this.x = 1;
}
mutateThis();
function mutateNestedThis () {
const mutateNested = () => this.bar = 1;
mutateNested();
}
mutateNestedThis();
function mutateThisConditionally () {
if ( globalThis.condition ) {
this.baz = 1;
}
}
mutateThisConditionally();
function CallSelfWithoutNew () {
this.quux = 1;
if ( globalThis.condition ) {
CallSelfWithoutNew();
}
}
const c = new CallSelfWithoutNew();
|