()
| 5036 | var propagateFromFunction = bindingPropagateFrom; |
| 5037 | |
| 5038 | function boundValueFunction() { |
| 5039 | var ret = this._boundTo; |
| 5040 | if (ret !== undefined) { |
| 5041 | if (ret instanceof Promise) { |
| 5042 | if (ret.isFulfilled()) { |
| 5043 | return ret.value(); |
| 5044 | } else { |
| 5045 | return undefined; |
| 5046 | } |
| 5047 | } |
| 5048 | } |
| 5049 | return ret; |
| 5050 | } |
| 5051 | |
| 5052 | function longStackTracesCaptureStackTrace() { |
| 5053 | this._trace = new CapturedTrace(this._peekContext()); |
nothing calls this directly
no outgoing calls
no test coverage detected