2019-01-09 13:49:16 -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
|
|
|
|
*/
|
|
|
|
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
export function assertNumber(actual: any, msg: string) {
|
|
|
|
if (typeof actual != 'number') {
|
|
|
|
throwError(msg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function assertEqual<T>(actual: T, expected: T, msg: string) {
|
|
|
|
if (actual != expected) {
|
|
|
|
throwError(msg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function assertNotEqual<T>(actual: T, expected: T, msg: string) {
|
|
|
|
if (actual == expected) {
|
|
|
|
throwError(msg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function assertSame<T>(actual: T, expected: T, msg: string) {
|
|
|
|
if (actual !== expected) {
|
|
|
|
throwError(msg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-22 14:29:45 +01:00
|
|
|
export function assertNotSame<T>(actual: T, expected: T, msg: string) {
|
|
|
|
if (actual === expected) {
|
|
|
|
throwError(msg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-09 13:49:16 -08:00
|
|
|
export function assertLessThan<T>(actual: T, expected: T, msg: string) {
|
|
|
|
if (actual >= expected) {
|
|
|
|
throwError(msg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function assertGreaterThan<T>(actual: T, expected: T, msg: string) {
|
|
|
|
if (actual <= expected) {
|
|
|
|
throwError(msg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function assertNotDefined<T>(actual: T, msg: string) {
|
|
|
|
if (actual != null) {
|
|
|
|
throwError(msg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function assertDefined<T>(actual: T, msg: string) {
|
|
|
|
if (actual == null) {
|
|
|
|
throwError(msg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function throwError(msg: string): never {
|
|
|
|
// tslint:disable-next-line
|
|
|
|
debugger; // Left intentionally for better debugger experience.
|
|
|
|
throw new Error(`ASSERTION ERROR: ${msg}`);
|
|
|
|
}
|
|
|
|
|
|
|
|
export function assertDomNode(node: any) {
|
2019-02-13 13:11:39 -08:00
|
|
|
// If we're in a worker, `Node` will not be defined.
|
2019-01-28 14:45:31 -08:00
|
|
|
assertEqual(
|
2019-02-13 13:11:39 -08:00
|
|
|
(typeof Node !== 'undefined' && node instanceof Node) ||
|
2019-01-28 14:45:31 -08:00
|
|
|
(typeof node === 'object' && node.constructor.name === 'WebWorkerRenderNode'),
|
|
|
|
true, 'The provided value must be an instance of a DOM Node');
|
2019-01-09 13:49:16 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export function assertDataInRange(arr: any[], index: number) {
|
|
|
|
assertLessThan(index, arr ? arr.length : 0, 'index expected to be a valid data index');
|
|
|
|
}
|