2017-12-01 14:23:03 -08: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-12-13 16:32:21 -08:00
|
|
|
// The functions in this file verify that the assumptions we are making
|
|
|
|
// about state in an instruction are correct before implementing any logic.
|
|
|
|
// They are meant only to be called in dev mode as sanity checks.
|
2017-12-13 11:00:28 -08:00
|
|
|
|
2018-02-12 22:46:15 -08:00
|
|
|
export function assertNumber(actual: any, msg: string) {
|
|
|
|
if (typeof actual != 'number') {
|
|
|
|
throwError(msg);
|
2018-01-08 21:57:50 -08:00
|
|
|
}
|
2017-12-01 14:23:03 -08:00
|
|
|
}
|
|
|
|
|
2018-02-12 22:46:15 -08:00
|
|
|
export function assertEqual<T>(actual: T, expected: T, msg: string) {
|
|
|
|
if (actual != expected) {
|
|
|
|
throwError(msg);
|
|
|
|
}
|
2017-12-01 14:23:03 -08:00
|
|
|
}
|
|
|
|
|
2018-02-12 22:46:15 -08:00
|
|
|
export function assertNotEqual<T>(actual: T, expected: T, msg: string) {
|
|
|
|
if (actual == expected) {
|
|
|
|
throwError(msg);
|
|
|
|
}
|
2017-12-01 14:23:03 -08:00
|
|
|
}
|
|
|
|
|
2018-02-12 22:46:15 -08:00
|
|
|
export function assertSame<T>(actual: T, expected: T, msg: string) {
|
|
|
|
if (actual !== expected) {
|
|
|
|
throwError(msg);
|
|
|
|
}
|
2017-12-01 14:23:03 -08:00
|
|
|
}
|
|
|
|
|
2018-02-12 22:46:15 -08:00
|
|
|
export function assertLessThan<T>(actual: T, expected: T, msg: string) {
|
|
|
|
if (actual >= expected) {
|
|
|
|
throwError(msg);
|
|
|
|
}
|
2017-12-01 14:23:03 -08:00
|
|
|
}
|
|
|
|
|
2018-04-05 10:29:47 +02:00
|
|
|
export function assertGreaterThan<T>(actual: T, expected: T, msg: string) {
|
|
|
|
if (actual <= expected) {
|
|
|
|
throwError(msg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-09 16:49:39 -07:00
|
|
|
export function assertNotDefined<T>(actual: T, msg: string) {
|
2018-02-12 22:46:15 -08:00
|
|
|
if (actual != null) {
|
|
|
|
throwError(msg);
|
|
|
|
}
|
2017-12-01 14:23:03 -08:00
|
|
|
}
|
|
|
|
|
2018-05-09 16:49:39 -07:00
|
|
|
export function assertDefined<T>(actual: T, msg: string) {
|
2018-02-12 22:46:15 -08:00
|
|
|
if (actual == null) {
|
|
|
|
throwError(msg);
|
|
|
|
}
|
2017-12-01 14:23:03 -08:00
|
|
|
}
|
2018-02-12 22:46:15 -08:00
|
|
|
|
2018-03-14 21:32:09 -07:00
|
|
|
export function assertComponentType(
|
|
|
|
actual: any,
|
|
|
|
msg: string =
|
|
|
|
'Type passed in is not ComponentType, it does not have \'ngComponentDef\' property.') {
|
|
|
|
if (!actual.ngComponentDef) {
|
2018-07-11 09:56:47 -07:00
|
|
|
debugger;
|
2018-03-14 21:32:09 -07:00
|
|
|
throwError(msg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-12 22:46:15 -08:00
|
|
|
function throwError(msg: string): never {
|
2018-03-29 12:58:41 -07:00
|
|
|
debugger; // Left intentionally for better debugger experience.
|
2018-02-12 22:46:15 -08:00
|
|
|
throw new Error(`ASSERTION ERROR: ${msg}`);
|
2018-07-11 09:56:47 -07:00
|
|
|
}
|