mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
14 lines
162 B
JavaScript
14 lines
162 B
JavaScript
![]() |
class A {
|
||
|
constructor(delegate) {
|
||
|
this.property1 = 1;
|
||
|
this._property2 = 2;
|
||
|
}
|
||
|
|
||
|
get getter() {
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
async method(foo, bar) {
|
||
|
}
|
||
|
}
|