playwright/utils/doclint/check_public_api/test/diff-properties/foo.js

8 lines
98 B
JavaScript
Raw Normal View History

2019-11-19 03:18:28 +01:00
class Foo {
constructor() {
this.a = 42;
this.b = 'hello';
this.emit('done');
}
}