mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
12 lines
271 B
Plaintext
12 lines
271 B
Plaintext
/**
|
|
* @name ConstructorCalls
|
|
* @description Test the difference between ClassInstanceExpr and ConstructorCall
|
|
*/
|
|
|
|
import default
|
|
|
|
// There should be three constructor calls, including the class instance
|
|
// expression 'new A(...)'
|
|
from ConstructorCall call
|
|
select call
|