mirror of
https://github.com/github/codeql.git
synced 2026-01-17 00:14:51 +01:00
8 lines
157 B
JavaScript
8 lines
157 B
JavaScript
function f(x) {
|
|
var result = send(x);
|
|
// check for error
|
|
if (result === -1)
|
|
throw new Error("send failed");
|
|
waitForResponse();
|
|
return getResponse();
|
|
} |