mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 23:38:30 +08:00
Added a decorator for marking methods as stubs.
This commit is contained in:
parent
f8dc1af8ea
commit
4cd0b58f66
17
src/core/decorators.ts
Normal file
17
src/core/decorators.ts
Normal 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;
|
||||||
|
};
|
Loading…
Reference in New Issue
Block a user