WARNING constant

A minor code problem. For example names of local variables should be camel case and start with a lower case letter. Staring the name of a variable with an upper case is OK from the language point of view, but it is nice to warn the user.

Implementation

static const RefactoringProblemSeverity WARNING =
    RefactoringProblemSeverity._('WARNING');