本文整理汇总了TypeScript中@ember/-internals/utils.setName函数的典型用法代码示例。如果您正苦于以下问题:TypeScript setName函数的具体用法?TypeScript setName怎么用?TypeScript setName使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了setName函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: classToString
export function classToString(this: object): string {
let name = getName(this);
if (name !== void 0) {
return name;
}
name = calculateToString(this);
setName(this, name);
return name;
}
开发者ID:cibernox,项目名称:ember.js,代码行数:9,代码来源:namespace_search.ts
示例2: _processNamespace
function _processNamespace(paths: string[], root: Namespace, seen: Set<Namespace>): void {
let idx = paths.length;
let id = paths.join('.');
NAMESPACES_BY_ID[id] = root;
setName(root, id);
// Loop over all of the keys in the namespace, looking for classes
for (let key in root) {
if (!hasOwnProperty.call(root, key)) {
continue;
}
let obj = root[key];
// If we are processing the `Ember` namespace, for example, the
// `paths` will start with `["Ember"]`. Every iteration through
// the loop will update the **second** element of this list with
// the key, so processing `Ember.View` will make the Array
// `['Ember', 'View']`.
paths[idx] = key;
// If we have found an unprocessed class
if (obj && obj.toString === classToString && getName(obj) === void 0) {
// Replace the class' `toString` with the dot-separated path
setName(obj, paths.join('.'));
// Support nested namespaces
} else if (obj && obj.isNamespace) {
// Skip aliased namespaces
if (seen.has(obj)) {
continue;
}
seen.add(obj);
// Process the child namespace
_processNamespace(paths, obj, seen);
}
}
paths.length = idx; // cut out last item
}
开发者ID:cibernox,项目名称:ember.js,代码行数:40,代码来源:namespace_search.ts
示例3: findNamespaces
export function findNamespaces(): void {
if (!flags.unprocessedNamespaces) {
return;
}
let lookup = context.lookup;
let keys = Object.keys(lookup);
for (let i = 0; i < keys.length; i++) {
let key = keys[i];
// Only process entities that start with uppercase A-Z
if (!isUppercase(key.charCodeAt(0))) {
continue;
}
let obj = tryIsNamespace(lookup, key);
if (obj) {
setName(obj, key);
}
}
}
开发者ID:cibernox,项目名称:ember.js,代码行数:18,代码来源:namespace_search.ts
注:本文中的@ember/-internals/utils.setName函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论