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


TypeScript core.Compiler类代码示例

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


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

示例1: ViewMetadata

 it('should not update existing compilation results', () => {
   viewResolver.setView(
       SomeComp,
       new ViewMetadata({template: '<child-cmp></child-cmp>', directives: [ChildComp]}));
   viewResolver.setInlineTemplate(ChildComp, 'oldChild');
   let compFactory = compiler.compileComponentSync(SomeComp);
   viewResolver.setInlineTemplate(ChildComp, 'newChild');
   compiler.compileComponentSync(SomeComp);
   let compRef = compFactory.create(injector);
   expect(compRef.location.nativeElement).toHaveText('oldChild');
 });
开发者ID:4vanger,项目名称:angular,代码行数:11,代码来源:runtime_compiler_spec.ts

示例2: fakeAsync

         fakeAsync(() => {
           @NgModule(
               {declarations: [SomeCompWithUrlTemplate], precompile: [SomeCompWithUrlTemplate]})
           class SomeModule {
           }

           xhr.spy('get').andCallFake(() => Promise.resolve('hello'));
           compiler.compileModuleAsync(SomeModule);
           tick();

           let ngModuleFactory = compiler.compileModuleSync(SomeModule);
           expect(ngModuleFactory).toBeTruthy();
         }));
开发者ID:alexbell1,项目名称:angular,代码行数:13,代码来源:runtime_compiler_spec.ts

示例3: fakeAsync

         fakeAsync(() => {
           @NgModule({
             declarations: [SomeCompWithUrlTemplate],
             entryComponents: [SomeCompWithUrlTemplate]
           })
           class SomeModule {
           }

           resourceLoader.spy('get').and.callFake(() => Promise.resolve('hello'));
           compiler.compileModuleAsync(SomeModule);
           tick();

           const ngModuleFactory = compiler.compileModuleSync(SomeModule);
           expect(ngModuleFactory).toBeTruthy();
         }));
开发者ID:AnthonyPAlicea,项目名称:angular,代码行数:15,代码来源:runtime_compiler_spec.ts

示例4: resolve

  return new Promise<NgModuleFactory<{}>>((resolve, reject) => {
    // If module has been compiled AoT
    if (moduleOrFactory instanceof NgModuleFactory) {
      console.log('Already AoT?');
      resolve(moduleOrFactory);
      return;
    } else {
      let moduleFactory = factoryCacheMap.get(moduleOrFactory);

      // If module factory is cached
      if (moduleFactory) {
        console.log('\n\n\n WE FOUND ONE!! USE IT!!\n\n\n');
        resolve(moduleFactory);
        return;
      }

      // Compile the module and cache it
      compiler.compileModuleAsync(moduleOrFactory)
        .then((factory) => {
          console.log('\n\n\n\n MAP THIS THING!!!!\n\n\n ');
          factoryCacheMap.set(moduleOrFactory, factory);
          resolve(factory);
        }, (err => {
          reject(err);
        }));
    }
  });
开发者ID:SKorolchuk,项目名称:aspnetcore-angular2-universal,代码行数:27,代码来源:temporary-aspnetcore-engine.ts

示例5: Error

 .then((rawModule: any) => {
   const module = rawModule[ngModuleExport];
   if (!module) {
     throw new Error(`Module ${modulePath} does not export ${ngModuleExport}`);
   }
   return compiler.compileModuleAsync(module);
 });
开发者ID:Artfloriani,项目名称:ionic,代码行数:7,代码来源:ng-module-loader.ts

示例6:

 System.import('./dist/lazy.bundle.js').then((module: any) => {
   this.compiler.compileModuleAndAllComponentsAsync(module.LazyModule)
     .then((compiled) => {
       const factory = compiled.componentFactories[0];
       this.container.createComponent(factory);
     });
 });
开发者ID:BobChao87,项目名称:angular,代码行数:7,代码来源:app.component.ts

示例7: of

 return mergeMap.call(wrapIntoObservable(loadChildren()), (t: any) => {
   if (t instanceof NgModuleFactory) {
     return of (t);
   } else {
     return fromPromise(this.compiler.compileModuleAsync(t));
   }
 });
开发者ID:acramatte,项目名称:angular,代码行数:7,代码来源:router_config_loader.ts

示例8: fakeAsync

 fakeAsync(() => {
   xhr.spy('get').andCallFake(() => Promise.resolve('hello'));
   tcb.createFakeAsync(SomeCompWithUrlTemplate);
   let appModuleFactory = compiler.compileAppModuleSync(
       SomeModule, new AppModuleMetadata({precompile: [SomeCompWithUrlTemplate]}));
   expect(appModuleFactory).toBeTruthy();
 }));
开发者ID:4vanger,项目名称:angular,代码行数:7,代码来源:runtime_compiler_spec.ts

示例9: wrapIntoObservable

 return wrapIntoObservable(loadChildren()).pipe(mergeMap((t: any) => {
   if (t instanceof NgModuleFactory) {
     return of (t);
   } else {
     return from(this.compiler.compileModuleAsync(t));
   }
 }));
开发者ID:Cammisuli,项目名称:angular,代码行数:7,代码来源:router_config_loader.ts

示例10: it

 it('should allow to use templateUrl components', fakeAsync(() => {
      xhr.spy('get').andCallFake(() => Promise.resolve('hello'));
      let appModuleFactory: AppModuleFactory<any>;
      compiler
          .compileAppModuleAsync(
              SomeModule, new AppModuleMetadata({precompile: [SomeCompWithUrlTemplate]}))
          .then((f) => appModuleFactory = f);
      tick();
      expect(appModuleFactory.moduleType).toBe(SomeModule);
    }));
开发者ID:4vanger,项目名称:angular,代码行数:10,代码来源:runtime_compiler_spec.ts


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