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