mirror of
https://github.com/github/codeql.git
synced 2026-02-14 22:21:06 +01:00
12 lines
241 B
Plaintext
12 lines
241 B
Plaintext
import semmle.javascript.frameworks.Testing
|
|
|
|
class MyTest extends Test, CallExpr {
|
|
MyTest() {
|
|
getCallee().(VarAccess).getName() = "mytest"
|
|
}
|
|
|
|
override string toString() { result = CallExpr.super.toString() }
|
|
}
|
|
|
|
from Test t
|
|
select t |