mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
11 lines
249 B
JavaScript
11 lines
249 B
JavaScript
async function getData(
|
|
x, // $ threatModelSource=remote
|
|
y) { // $ threatModelSource=remote
|
|
"use server";
|
|
}
|
|
|
|
async function getData2(
|
|
x, // should not be remote flow sources (because the function does not have "use server")
|
|
y) {
|
|
}
|