Gets the value of this field.
()
| 11403 | } |
| 11404 | /** Gets the value of this field. */ |
| 11405 | get value() { |
| 11406 | const handle = Memory.alloc(Process.pointerSize); |
| 11407 | Il2Cpp.Api._fieldGetStaticValue(this.handle, handle); |
| 11408 | return (0, utils_1.read)(handle, this.type); |
| 11409 | } |
| 11410 | /** Sets the value of this field. Thread static or literal values cannot be altered yet. */ |
| 11411 | set value(value) { |
| 11412 | if (this.isThreadStatic || this.isLiteral) { |
nothing calls this directly
no test coverage detected