class DidYouMean::VariableNameChecker
Constants
- NAMES_TO_EXCLUDE
- RB_RESERVED_WORDS
-
VariableNameChecker::RB_RESERVED_WORDSis the list of all reserved words inRuby. They could be declared like methods are, and a typo would causeRubyto raise aNameErrorbecause of the way they are declared.The
:VariableNameCheckerwill use this list to suggest a reversed word if aNameErroris raised and found closest matches, excluding:* +do+ * +if+ * +in+ * +or+
Also see
MethodNameChecker::RB_RESERVED_WORDS.