本文整理匯總了TypeScript中@ember/-internals/utils.dictionary函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript dictionary函數的具體用法?TypeScript dictionary怎麽用?TypeScript dictionary使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。
在下文中一共展示了dictionary函數的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: constructor
constructor(registry: Registry, options: ContainerOptions = {}) {
this.registry = registry as Registry & DebugRegistry;
this.owner = options.owner || null;
this.cache = dictionary(options.cache || null);
this.factoryManagerCache = dictionary(options.factoryManagerCache || null);
this.isDestroyed = false;
this.isDestroying = false;
if (DEBUG) {
this.validationCache = dictionary(options.validationCache || null);
if (containers !== undefined) {
containers.add(this);
}
}
}
示例2: constructor
constructor(options: RegistryOptions = {}) {
this.fallback = options.fallback || null;
this.resolver = options.resolver || null;
if (ENV._ENABLE_RESOLVER_FUNCTION_SUPPORT !== true) {
assert(missingResolverFunctionsDeprecation, typeof this.resolver !== 'function');
}
if (
REGISTRY_RESOLVER_AS_FUNCTION &&
typeof this.resolver === 'function' &&
ENV._ENABLE_RESOLVER_FUNCTION_SUPPORT === true
) {
deprecate(missingResolverFunctionsDeprecation, false, {
id: 'ember-application.registry-resolver-as-function',
until: '3.0.0',
url: 'https://emberjs.com/deprecations/v2.x#toc_registry-resolver-as-function',
});
this.resolver = { resolve: this.resolver as Resolve };
}
this.registrations = dictionary(options.registrations || null);
this._typeInjections = dictionary(null);
this._injections = dictionary(null);
this._localLookupCache = Object.create(null);
this._normalizeCache = dictionary(null);
this._resolveCache = dictionary(null);
this._failSet = new Set();
this._options = dictionary(null);
this._typeOptions = dictionary(null);
}
示例3: constructor
constructor(options: RegistryOptions = {}) {
this.fallback = options.fallback || null;
this.resolver = options.resolver || null;
this.registrations = dictionary(options.registrations || null);
this._typeInjections = dictionary(null);
this._injections = dictionary(null);
this._localLookupCache = Object.create(null);
this._normalizeCache = dictionary(null);
this._resolveCache = dictionary(null);
this._failSet = new Set();
this._options = dictionary(null);
this._typeOptions = dictionary(null);
}
示例4: knownForType
/**
@private
@method knownForType
@param {String} type the type to iterate over
*/
knownForType(type: string): KnownForTypeResult {
let localKnown = dictionary(null);
let registeredNames = Object.keys(this.registrations);
for (let index = 0; index < registeredNames.length; index++) {
let fullName = registeredNames[index];
let itemType = fullName.split(':')[0];
if (itemType === type) {
localKnown[fullName] = true;
}
}
let fallbackKnown, resolverKnown;
if (this.fallback !== null) {
fallbackKnown = this.fallback.knownForType(type);
}
if (this.resolver !== null && this.resolver.knownForType) {
resolverKnown = this.resolver.knownForType(type);
}
return assign({}, fallbackKnown, localKnown, resolverKnown);
}
示例5: has
if (resolved === undefined) {
registry._failSet.add(normalizedName);
} else {
registry._resolveCache[normalizedName] = resolved;
}
return resolved;
}
function has(
registry: Registry,
fullName: string,
source: string | undefined,
namespace: string | undefined
) {
return registry.resolve(fullName, { source, namespace }) !== undefined;
}
const privateNames: { [key: string]: string } = dictionary(null);
const privateSuffix = `${Math.random()}${Date.now()}`.replace('.', '');
export function privatize([fullName]: TemplateStringsArray): string {
let name = privateNames[fullName];
if (name) {
return name;
}
let [type, rawName] = fullName.split(':');
return (privateNames[fullName] = intern(`${type}:${rawName}-${privateSuffix}`));
}
示例6: resetCache
function resetCache(container: Container) {
container.cache = dictionary(null);
container.factoryManagerCache = dictionary(null);
}