(path: ObjectPath)
| 86 | } |
| 87 | |
| 88 | deoptimizePath(path: ObjectPath): void { |
| 89 | this.getObjectEntity().deoptimizePath(path); |
| 90 | if (path.length === 1 && path[0] === UnknownKey) { |
| 91 | // A reassignment of UNKNOWN_PATH is considered equivalent to having lost track |
| 92 | // which means the return expression and parameters need to be reassigned |
| 93 | this.scope.getReturnExpression().deoptimizePath(UNKNOWN_PATH); |
| 94 | this.scope.deoptimizeAllParameters(); |
| 95 | } |
| 96 | } |
| 97 | |
| 98 | getLiteralValueAtPath( |
| 99 | path: ObjectPath, |
nothing calls this directly
no test coverage detected
searching dependent graphs…