class VariableState

Tracks state for a variable

Public Instance Methods

nice() click to toggle source
# File lib/rubocop/yast/variable_scope.rb, line 3
def nice
  RuboCop::Yast.logger.debug "GETN #{inspect}"
  @nice
end
nice=(v) click to toggle source
# File lib/rubocop/yast/variable_scope.rb, line 8
def nice=(v)
  @nice = v
  RuboCop::Yast.logger.debug "SETN #{inspect}"
  v
end