mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
With the old test runner we cannot have `VerifyAssertions.qlref`s for each individual test that reference a shared `VerifyAssertions.ql` in the parent directory, since it doesn't like nested tests. Instead, we have to turn `VerifyAssertions.ql` into `VerifyAssertions.qll`, and each `VerifyAsssertions.qlref` into a `VerifyAssertions.ql` that imports it. But then that doesn't work with our old directory structure, since the import path would have to contain the invalid identifier `library-tests`. As a workaround, I have moved the API graph tests into a directory without dashes in its path.
15 lines
419 B
JavaScript
15 lines
419 B
JavaScript
const express = require('express');
|
|
|
|
var app1 = new express();
|
|
app1.get('/',
|
|
(req, res) => res.send('Hello World!') /* def (parameter 1 (member get (instance (member exports (module express))))) */
|
|
);
|
|
|
|
function makeApp() {
|
|
return new express();
|
|
}
|
|
|
|
var app2 = makeApp();
|
|
app2.get('/',
|
|
(req, res) => res.send('Hello World!') /* def (parameter 1 (member get (instance (member exports (module express))))) */
|
|
); |