Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | /**
* Initialization analysis error types
* Used for Rust-style "use before initialization" detection
*/
import IBaseAnalysisError from "./IBaseAnalysisError";
import IDeclarationInfo from "./IDeclarationInfo";
/**
* Error for using a variable before initialization
*/
interface IInitializationError extends IBaseAnalysisError {
/** The variable or field that was used before initialization */
variable: string;
/** Declaration info for the variable */
declaration: IDeclarationInfo;
/** Whether this is a "may be uninitialized" (conditional) or "definitely uninitialized" */
mayBeUninitialized: boolean;
}
export default IInitializationError;
|