TypeScript/tests/baselines/reference/targetTypeArgs.js

42 lines
821 B
JavaScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [targetTypeArgs.ts]
function foo(callback: (x: string) => void) {
callback("hello");
}
foo(function(x) { x });
[1].forEach(function(v,i,a) { v });
["hello"].every(function(v,i,a) {return true;});
[1].every(function(v,i,a) {return true;});
[1].every(function(v,i,a) {return true;});
["s"].every(function(v,i,a) {return true;});
["s"].forEach(function(v,i,a) { v });
//// [targetTypeArgs.js]
function foo(callback) {
callback("hello");
}
foo(function (x) {
x;
});
[1].forEach(function (v, i, a) {
v;
});
["hello"].every(function (v, i, a) {
return true;
});
[1].every(function (v, i, a) {
return true;
});
[1].every(function (v, i, a) {
return true;
});
["s"].every(function (v, i, a) {
return true;
});
["s"].forEach(function (v, i, a) {
v;
});