当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript ember-utils.dictionary函数代码示例

本文整理汇总了TypeScript中ember-utils.dictionary函数的典型用法代码示例。如果您正苦于以下问题:TypeScript dictionary函数的具体用法?TypeScript dictionary怎么用?TypeScript dictionary使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了dictionary函数的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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;

    if (DEBUG) {
      this.validationCache = dictionary(options.validationCache || null);
      if (containers !== undefined) {
        containers.add(this);
      }
    }
  }
开发者ID:Artmann,项目名称:ember.js,代码行数:14,代码来源:container.ts

示例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 (typeof this.resolver === 'function' && ENV._ENABLE_RESOLVER_FUNCTION_SUPPORT === true) {
      deprecateResolverFunction(this);
    }

    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);
  }
开发者ID:realityendshere,项目名称:ember.js,代码行数:25,代码来源:registry.ts

示例3: 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);
  }
开发者ID:Artmann,项目名称:ember.js,代码行数:34,代码来源:registry.ts

示例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);
  }
开发者ID:realityendshere,项目名称:ember.js,代码行数:28,代码来源:registry.ts

示例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}`));
}
开发者ID:realityendshere,项目名称:ember.js,代码行数:30,代码来源:registry.ts

示例6: resetCache

function resetCache(container: Container) {
  destroyDestroyables(container);
  container.cache = dictionary(null);
  container.factoryManagerCache = dictionary(null);
}
开发者ID:Artmann,项目名称:ember.js,代码行数:5,代码来源:container.ts

示例7: resetCache

function resetCache(container: Container) {
  container.cache = dictionary(null);
  container.factoryManagerCache = dictionary(null);
}
开发者ID:chundabear,项目名称:ember.js,代码行数:4,代码来源:container.ts


注:本文中的ember-utils.dictionary函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。