mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-27 19:59:17 +00:00
Libraries: Move to Userland/Libraries/
This commit is contained in:
@@ -1,19 +0,0 @@
|
||||
test("constructors are always strict mode", () => {
|
||||
class A {
|
||||
constructor() {
|
||||
expect(isStrictMode()).toBeTrue();
|
||||
}
|
||||
}
|
||||
|
||||
new A();
|
||||
});
|
||||
|
||||
test("methods are always strict mode", () => {
|
||||
class A {
|
||||
method() {
|
||||
expect(isStrictMode()).toBeTrue();
|
||||
}
|
||||
}
|
||||
|
||||
new A().method();
|
||||
});
|
||||
Reference in New Issue
Block a user