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


TypeScript identifiers.assetUrl函数代码示例

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


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

示例1: constructor

export class ExternalClass {
  changeable: any;
  constructor(public data: any) { this.changeable = data; }
  someMethod(a: any /** TODO #9100 */) { return {'param': a, 'data': this.data}; }
}

const testDataIdentifier = {
  name: 'ExternalClass',
  moduleUrl: `@angular/compiler/test/output/output_emitter_util`,
  runtime: ExternalClass
};

const eventEmitterIdentifier = {
  name: 'EventEmitter',
  moduleUrl: assetUrl('core'),
  runtime: EventEmitter
};

const enumIdentifier = {
  name: 'ViewType.HOST',
  moduleUrl: assetUrl('core', 'linker/view_type'),
  runtime: ViewType.HOST
};

const baseErrorIdentifier = {
  name: 'BaseError',
  moduleUrl: assetUrl('core', 'facade/errors'),
  runtime: BaseError
};
开发者ID:JSMike,项目名称:angular,代码行数:29,代码来源:output_emitter_util.ts

示例2: constructor

import {ViewType} from '@angular/core/src/linker/view_type';

export class ExternalClass {
  changeable: any;
  constructor(public data: any) { this.changeable = data; }
  someMethod(a: any /** TODO #9100 */) { return {'param': a, 'data': this.data}; }
}

const testDataIdentifier = new CompileIdentifierMetadata({
  name: 'ExternalClass',
  moduleUrl: `@angular/compiler/test/output/output_emitter_util`,
  reference: ExternalClass
});

const eventEmitterIdentifier = new CompileIdentifierMetadata(
    {name: 'EventEmitter', moduleUrl: assetUrl('core'), reference: EventEmitter});

const enumIdentifier = new CompileIdentifierMetadata({
  name: 'ViewType.HOST',
  moduleUrl: assetUrl('core', 'linker/view_type'),
  reference: ViewType.HOST
});

const baseErrorIdentifier = new CompileIdentifierMetadata(
    {name: 'BaseError', moduleUrl: assetUrl('core', 'facade/errors'), reference: BaseError});

export var codegenExportsVars = [
  'getExpressions',
];

开发者ID:gonzofish,项目名称:angular,代码行数:29,代码来源:output_emitter_util.ts


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