2016-06-23 16:47:54 +00:00
|
|
|
/**
|
|
|
|
|
* @license
|
2020-05-19 19:08:49 +00:00
|
|
|
* Copyright Google LLC All Rights Reserved.
|
2016-06-23 16:47:54 +00:00
|
|
|
*
|
|
|
|
|
* 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
|
|
|
|
|
*/
|
|
|
|
|
|
2016-08-31 01:07:40 +00:00
|
|
|
/**
|
|
|
|
|
* @module
|
|
|
|
|
* @description
|
|
|
|
|
* Entry point for all APIs of the compiler package.
|
|
|
|
|
*
|
|
|
|
|
* <div class="callout is-critical">
|
|
|
|
|
* <header>Unstable APIs</header>
|
|
|
|
|
* <p>
|
|
|
|
|
* All compiler apis are currently considered experimental and private!
|
|
|
|
|
* </p>
|
|
|
|
|
* <p>
|
|
|
|
|
* We expect the APIs in this package to keep on changing. Do not rely on them.
|
|
|
|
|
* </p>
|
|
|
|
|
* </div>
|
|
|
|
|
*/
|
2021-11-09 18:59:21 +00:00
|
|
|
|
|
|
|
|
// TODO(alxhub): @angular/compiler/testing is unused in Ivy. A placeholder
|
|
|
|
|
// is left here because the components repo still depends on this package
|
|
|
|
|
// directly. It will be cleaned up at a later date.
|
|
|
|
|
//
|
|
|
|
|
// This export ensures this package is not empty.
|
|
|
|
|
export const unusedExport = true;
|