本文整理汇总了TypeScript中@ember/-internals/metal.getCurrentTracker函数的典型用法代码示例。如果您正苦于以下问题:TypeScript getCurrentTracker函数的具体用法?TypeScript getCurrentTracker怎么用?TypeScript getCurrentTracker使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了getCurrentTracker函数的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: compute
compute() {
let { _parentValue, _propertyKey } = this;
if (DEBUG) {
(this.tag.inner as TwoWayFlushDetectionTag).didCompute(_parentValue);
}
let parent: any;
let tracker: any;
if (EMBER_METAL_TRACKED_PROPERTIES) {
parent = getCurrentTracker();
tracker = setCurrentTracker();
}
let ret = get(_parentValue, _propertyKey);
if (EMBER_METAL_TRACKED_PROPERTIES) {
setCurrentTracker(parent!);
let tag = tracker!.combine();
if (parent) parent.add(tag);
this._propertyTag.inner.update(tag);
}
return ret;
}