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


TypeScript Map.has方法代码示例

本文整理汇总了TypeScript中angular2/src/facade/collection.Map.has方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Map.has方法的具体用法?TypeScript Map.has怎么用?TypeScript Map.has使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在angular2/src/facade/collection.Map的用法示例。


在下文中一共展示了Map.has方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: annotations

 annotations(typeOrFunc): List<any> {
   if (this._typeInfo.has(typeOrFunc)) {
     return this._getTypeInfoField(typeOrFunc, "annotations", []);
   } else {
     return this.reflectionCapabilities.annotations(typeOrFunc);
   }
 }
开发者ID:Salim-K,项目名称:angular,代码行数:7,代码来源:reflector.ts

示例2: parameters

 parameters(typeOrFunc): List<any> {
   if (this._typeInfo.has(typeOrFunc)) {
     return this._getTypeInfoField(typeOrFunc, "parameters", []);
   } else {
     return this.reflectionCapabilities.parameters(typeOrFunc);
   }
 }
开发者ID:Salim-K,项目名称:angular,代码行数:7,代码来源:reflector.ts

示例3: interfaces

 interfaces(type): List<any> {
   if (this._typeInfo.has(type)) {
     return this._getTypeInfoField(type, "interfaces", []);
   } else {
     return this.reflectionCapabilities.interfaces(type);
   }
 }
开发者ID:Salim-K,项目名称:angular,代码行数:7,代码来源:reflector.ts

示例4: setter

 setter(name: string): SetterFn {
   if (this._setters.has(name)) {
     return this._setters.get(name);
   } else {
     return this.reflectionCapabilities.setter(name);
   }
 }
开发者ID:Salim-K,项目名称:angular,代码行数:7,代码来源:reflector.ts

示例5: method

 method(name: string): MethodFn {
   if (this._methods.has(name)) {
     return this._methods.get(name);
   } else {
     return this.reflectionCapabilities.method(name);
   }
 }
开发者ID:Salim-K,项目名称:angular,代码行数:7,代码来源:reflector.ts

示例6: parameters

 parameters(typeOrFunc: /*Type*/ any): List<any> {
   if (this._injectableInfo.has(typeOrFunc)) {
     var res = this._getReflectionInfo(typeOrFunc)._parameters;
     return isPresent(res) ? res : [];
   } else {
     return this.reflectionCapabilities.parameters(typeOrFunc);
   }
 }
开发者ID:KenWilliamson,项目名称:Angular2HostedMobileApp,代码行数:8,代码来源:reflector.ts

示例7: interfaces

 interfaces(type: Type): List<any> {
   if (this._injectableInfo.has(type)) {
     var res = this._getReflectionInfo(type)._interfaces;
     return isPresent(res) ? res : [];
   } else {
     return this.reflectionCapabilities.interfaces(type);
   }
 }
开发者ID:KenWilliamson,项目名称:Angular2HostedMobileApp,代码行数:8,代码来源:reflector.ts

示例8: insertSharedStyleText

export function insertSharedStyleText(cssText, styleHost, styleEl) {
  if (!_sharedStyleTexts.has(cssText)) {
    // Styles are unscoped and shared across components, only append them to the head
    // when there are not present yet
    _sharedStyleTexts.set(cssText, true);
    insertStyleElement(styleHost, styleEl);
  }
}
开发者ID:Salim-K,项目名称:angular,代码行数:8,代码来源:util.ts

示例9: annotations

 annotations(typeOrFunc: /*Type*/ any): List<any> {
   if (this._injectableInfo.has(typeOrFunc)) {
     var res = this._injectableInfo.get(typeOrFunc)._annotations;
     return isPresent(res) ? res : [];
   } else {
     return this.reflectionCapabilities.annotations(typeOrFunc);
   }
 }
开发者ID:goderbauer,项目名称:angular,代码行数:8,代码来源:reflector.ts

示例10: findTestabilityInTree

 findTestabilityInTree(elem): Testability {
   if (elem == null) {
     return null;
   }
   if (this._applications.has(elem)) {
     return this._applications.get(elem);
   }
   if (DOM.isShadowRoot(elem)) {
     return this.findTestabilityInTree(DOM.getHost(elem));
   }
   return this.findTestabilityInTree(DOM.parentElement(elem));
 }
开发者ID:Salim-K,项目名称:angular,代码行数:12,代码来源:testability.ts


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