2016-06-23 09:47:54 -07: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
|
|
|
|
*/
|
|
|
|
|
2015-04-24 13:17:36 -07:00
|
|
|
import {ReflectionCapabilities} from './reflection_capabilities';
|
2016-06-08 16:38:52 -07:00
|
|
|
import {Reflector} from './reflector';
|
|
|
|
|
2016-10-12 10:05:32 -07:00
|
|
|
export {Reflector} from './reflector';
|
2015-04-24 13:17:36 -07:00
|
|
|
|
2015-12-03 15:49:09 -08:00
|
|
|
/**
|
|
|
|
* The {@link Reflector} used internally in Angular to access metadata
|
|
|
|
* about symbols.
|
|
|
|
*/
|
2016-10-06 15:11:16 -07:00
|
|
|
export const reflector = new Reflector(new ReflectionCapabilities());
|