本文整理汇总了TypeScript中@glimmer/reference.combine函数的典型用法代码示例。如果您正苦于以下问题:TypeScript combine函数的具体用法?TypeScript combine怎么用?TypeScript combine使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了combine函数的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: constructor
constructor(instance: HelperInstance, args: CapturedArguments) {
super();
this.tag = combine([instance[RECOMPUTE_TAG], args.tag]);
this.instance = instance;
this.args = args;
}
示例2: constructor
constructor(ref: UpdatableReference, keyFor: (value: any, memo: any) => any) {
this.ref = ref;
this.keyFor = keyFor;
let valueTag = this.valueTag = UpdatableTag.create(CONSTANT_TAG);
this.tag = combine([ref.tag, valueTag]);
}
示例3: constructor
constructor(parentReference: any, propertyKey: string) {
super();
let parentReferenceTag = parentReference.tag;
let parentObjectTag = UpdatableTag.create(CONSTANT_TAG);
this._parentReference = parentReference;
this._parentObjectTag = parentObjectTag;
this._propertyKey = propertyKey;
if (EMBER_GLIMMER_DETECT_BACKTRACKING_RERENDER) {
let tag = combine([parentReferenceTag, parentObjectTag]);
this.tag = new TwoWayFlushDetectionTag(tag, propertyKey, this);
} else {
this.tag = combine([parentReferenceTag, parentObjectTag]);
}
}
示例4: constructor
constructor(outletNameRef: any, parentOutletStateRef: any) {
this.outletNameRef = outletNameRef;
this.parentOutletStateRef = parentOutletStateRef;
this.definition = null;
this.lastState = null;
let outletStateTag = this.outletStateTag = UpdatableTag.create(parentOutletStateRef.tag);
this.tag = combine([outletStateTag.inner, outletNameRef.tag]);
}
示例5: getChainTagsForKeys
export function getChainTagsForKeys(obj: any, keys: string[]) {
let chainTags: Tag[] = [];
for (let i = 0; i < keys.length; i++) {
chainTags.push(getChainTagsForKey(obj, keys[i]));
}
return combine(chainTags);
}
示例6: constructor
constructor(cond: any, truthy: any, falsy: any) {
super();
this.branchTag = UpdatableTag.create(CONSTANT_TAG);
this.tag = combine([cond.tag, this.branchTag]);
this.cond = cond;
this.truthy = truthy;
this.falsy = falsy;
}
示例7: constructor
constructor(sourceReference: VersionedPathReference<Opaque>, pathReference: PathReference<string>) {
super();
this.sourceReference = sourceReference;
this.pathReference = pathReference;
this.lastPath = null;
this.innerReference = NULL_REFERENCE;
let innerTag = this.innerTag = UpdatableTag.create(CONSTANT_TAG);
this.tag = combine([sourceReference.tag, pathReference.tag, innerTag]);
}
示例8: tagForProperty
export function tagForProperty(object: any, propertyKey: string | symbol, _meta?: Meta): Tag {
if (typeof object !== 'object' || object === null) {
return CONSTANT_TAG;
}
let meta = _meta === undefined ? metaFor(object) : _meta;
if (isProxy(object)) {
return tagFor(object, meta);
}
let tags = meta.writableTags();
let tag = tags[propertyKey];
if (tag) {
return tag;
}
if (EMBER_METAL_TRACKED_PROPERTIES) {
let pair = combine([makeTag(), UpdatableTag.create(CONSTANT_TAG)]);
return (tags[propertyKey] = pair);
} else {
return (tags[propertyKey] = makeTag());
}
}