Merge pull request #1072 from asger-semmle/prop-write-static-accessor

Approved by esben-semmle
This commit is contained in:
semmle-qlci
2019-03-12 16:51:54 +00:00
committed by GitHub
2 changed files with 10 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
class C {
static get foo() {} // OK
static set foo(v) {} // OK
get bar() {} // OK
set bar(v) {} // OK
}