2016-06-23 12:47:54 -04:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
2017-02-02 18:01:35 -05:00
|
|
|
import {InjectionToken, MissingTranslationStrategy, ViewEncapsulation, isDevMode} from '@angular/core';
|
2016-06-08 19:38:52 -04:00
|
|
|
|
2016-01-06 17:13:44 -05:00
|
|
|
import {CompileIdentifierMetadata} from './compile_metadata';
|
2016-11-23 12:42:19 -05:00
|
|
|
import {Identifiers, createIdentifier} from './identifiers';
|
2016-01-06 17:13:44 -05:00
|
|
|
|
2017-02-02 18:01:35 -05:00
|
|
|
|
2016-01-06 17:13:44 -05:00
|
|
|
export class CompilerConfig {
|
2017-03-24 12:59:58 -04:00
|
|
|
public defaultEncapsulation: ViewEncapsulation|null;
|
2017-01-10 22:07:03 -05:00
|
|
|
// Whether to support the `<template>` tag and the `template` attribute to define angular
|
|
|
|
// templates. They have been deprecated in 4.x, `<ng-template>` should be used instead.
|
|
|
|
public enableLegacyTemplate: boolean;
|
2016-06-13 13:06:40 -04:00
|
|
|
public useJit: boolean;
|
2017-03-24 12:59:58 -04:00
|
|
|
public missingTranslation: MissingTranslationStrategy|null;
|
2016-04-02 19:34:44 -04:00
|
|
|
|
2016-06-08 19:38:52 -04:00
|
|
|
constructor(
|
2017-03-07 14:16:27 -05:00
|
|
|
{defaultEncapsulation = ViewEncapsulation.Emulated, useJit = true, missingTranslation,
|
|
|
|
enableLegacyTemplate}: {
|
2016-06-13 13:06:40 -04:00
|
|
|
defaultEncapsulation?: ViewEncapsulation,
|
2017-01-26 02:26:49 -05:00
|
|
|
useJit?: boolean,
|
|
|
|
missingTranslation?: MissingTranslationStrategy,
|
2017-01-10 22:07:03 -05:00
|
|
|
enableLegacyTemplate?: boolean,
|
2016-06-13 13:06:40 -04:00
|
|
|
} = {}) {
|
2016-04-02 19:34:44 -04:00
|
|
|
this.defaultEncapsulation = defaultEncapsulation;
|
2017-03-24 12:59:58 -04:00
|
|
|
this.useJit = !!useJit;
|
|
|
|
this.missingTranslation = missingTranslation || null;
|
2017-01-10 22:07:03 -05:00
|
|
|
this.enableLegacyTemplate = enableLegacyTemplate !== false;
|
2016-01-06 17:13:44 -05:00
|
|
|
}
|
|
|
|
}
|