ladybird/Libraries/LibJS/Tests/strict-mode-blocks.js

23 lines
497 B
JavaScript
Raw Normal View History

test("Issue #3641, strict mode should be function- or program-level, not block-level", () => {
function func() {
expect(isStrictMode()).toBeFalse();
{
"use strict";
expect(isStrictMode()).toBeFalse();
}
if (true) {
"use strict";
expect(isStrictMode()).toBeFalse();
}
do {
"use strict";
expect(isStrictMode()).toBeFalse();
} while (false);
}
func();
});