mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-06 09:16:02 +02:00
10 lines
165 B
JavaScript
10 lines
165 B
JavaScript
![]() |
function newTernServer(options) {
|
||
|
return new tern.Server(options);
|
||
|
}
|
||
|
|
||
|
function requestCallback(obj) {
|
||
|
return function(err, data) {
|
||
|
obj.callback(err, data);
|
||
|
}
|
||
|
}
|