xdbc 1.0.141 → 1.0.142
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/DBC.ts +1 -1
package/package.json
CHANGED
package/src/DBC.ts
CHANGED
|
@@ -101,7 +101,7 @@ export class DBC {
|
|
|
101
101
|
}
|
|
102
102
|
|
|
103
103
|
// biome-ignore lint/suspicious/noExplicitAny: Gotta be any since parameter-values may be undefined.
|
|
104
|
-
const wrappedMethod = function (...args: any[]) {
|
|
104
|
+
const wrappedMethod = function (this: any, ...args: any[]) {
|
|
105
105
|
console.log("ParamvalueProvider2 invoked for", propertyKey, DBC.paramValueRequests);
|
|
106
106
|
// #region Check if a value of one of the method's parameter has been requested and pass it to the
|
|
107
107
|
// receptor, if so.
|