in src/annotations/index.ts [30:40]
descriptor.value = function (...args: any[]) {
const span = ContextManager.current.newLocalSpan(op || key);
span.start();
const result = original.apply(this, args);
span.stop();
return result;
};