COMPILE_TIME_ERROR constant

ErrorType const COMPILE_TIME_ERROR

Compile-time errors are errors that preclude execution. A compile time error must be reported by a Dart compiler before the erroneous code is executed.

Implementation

static const ErrorType COMPILE_TIME_ERROR =
    const ErrorType('COMPILE_TIME_ERROR', 2, ErrorSeverity.ERROR);