2019-03-22 15:43:07 +01:00
|
|
|
// Common error messages for use accross the standard library. Keeping error messages compact
|
|
|
|
// and reusing them where possible ensures minimal static data in binaries.
|
|
|
|
|
|
|
|
// @ts-ignore: decorator
|
|
|
|
@lazy @inline
|
|
|
|
export const E_INDEXOUTOFRANGE: string = "Index out of range";
|
|
|
|
|
|
|
|
// @ts-ignore: decorator
|
|
|
|
@lazy @inline
|
|
|
|
export const E_INVALIDLENGTH: string = "Invalid length";
|
|
|
|
|
|
|
|
// @ts-ignore: decorator
|
|
|
|
@lazy @inline
|
|
|
|
export const E_EMPTYARRAY: string = "Array is empty";
|
|
|
|
|
|
|
|
// @ts-ignore: decorator
|
|
|
|
@lazy @inline
|
|
|
|
export const E_HOLEYARRAY: string = "Element type must be nullable if array is holey";
|
2019-03-28 11:07:47 +01:00
|
|
|
|
|
|
|
// @ts-ignore: decorator
|
|
|
|
@lazy @inline
|
|
|
|
export const E_NOTIMPLEMENTED: string = "Not implemented";
|