(value)
| 1728 | return this.method.parameterCount; |
| 1729 | } |
| 1730 | setArgs(value) { |
| 1731 | if (value == undefined || value.length === 0 || value.length < this.method.parameterCount) |
| 1732 | return this; |
| 1733 | this.args = value; |
| 1734 | return this; |
| 1735 | } |
| 1736 | static MapCacheStringWithOutValue = new Map(); |
| 1737 | toString() { |
| 1738 | let cache = ValueResolve.MapCacheStringWithOutValue.get(this.cacheId); |