Added a decorator for marking methods as stubs.

This commit is contained in:
jtuu 2019-10-17 11:34:35 +03:00
parent f8dc1af8ea
commit 4cd0b58f66

17
src/core/decorators.ts Normal file
View File

@ -0,0 +1,17 @@
/**
* Prints a warning when the method is called.
*/
export const stub: MethodDecorator = function stub(
target: Object,
prop_key: PropertyKey,
descriptor: PropertyDescriptor,
) {
const orig_method: Function = descriptor.value;
descriptor.value = function(...args: any[]): any {
console.warn(`Stub: ${target.constructor.name}.prototype.${String(prop_key)}`);
return orig_method.apply(this, args);
};
return descriptor;
};