當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。