mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01:00
8 lines
115 B
JavaScript
8 lines
115 B
JavaScript
class C {
|
|
static get foo() {} // OK
|
|
static set foo(v) {} // OK
|
|
|
|
get bar() {} // OK
|
|
set bar(v) {} // OK
|
|
}
|