mirror of
https://github.com/github/codeql.git
synced 2026-03-18 05:26:45 +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();
|
|
} |