2016-11-29 18:36:33 -05: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
|
|
|
|
*/
|
|
|
|
import {Injectable} from '@angular/core';
|
2016-12-02 13:08:46 -05:00
|
|
|
import {CompileTypeSummary} from './compile_metadata';
|
2016-11-29 18:36:33 -05:00
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class SummaryResolver {
|
2016-12-02 13:08:46 -05:00
|
|
|
resolveSummary(reference: any): CompileTypeSummary { return null; }
|
2016-11-29 18:36:33 -05:00
|
|
|
}
|