UNPKG

1.61 kBSource Map (JSON)View Raw
1{"version":3,"file":"console.js","sourceRoot":"","sources":["../../../../modules/@angular/core/src/console.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;OAEI,EAAC,UAAU,EAAC,MAAM,MAAM;OACxB,EAAC,KAAK,EAAE,IAAI,EAAC,MAAM,eAAe;AACzC;IAAA;IAiBA,CAAC;IAhBD;;;OAGG;IACH,qBAAG,GAAH,UAAI,OAAe,IAAU,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;IAC9C;;;OAGG;IACH,sBAAI,GAAJ,UAAK,OAAe,IAAU,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;IACvC,kBAAU,GAA0B;QAC3C,EAAE,IAAI,EAAE,UAAU,EAAE;KACnB,CAAC;IACF,kBAAkB;IACX,sBAAc,GAAmE,cAAM,OAAA,EAC7F,EAD6F,CAC7F,CAAC;IACF,cAAC;AAAD,CAAC,AAjBD,IAiBC;AAED;IACA,gBAAgB;IAChB,OAAO,CAAC,UAAU,CAAC;IACnB;;;OAGG;IACH,OAAO,CAAC,cAAc,CAAC;AACvB,CAAC","sourcesContent":["/**\n * @license\n * Copyright Google Inc. All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n\nimport {Injectable} from './di';\nimport {print, warn} from './facade/lang';\nexport class Console {\n/**\n * @param {?} message\n * @return {?}\n */\nlog(message: string): void { print(message); }\n/**\n * @param {?} message\n * @return {?}\n */\nwarn(message: string): void { warn(message); }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Injectable },\n];\n/** @nocollapse */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction Console_tsickle_Closure_declarations() {\n/** @type {?} */\nConsole.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nConsole.ctorParameters;\n}\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"]}
\No newline at end of file