class RuboCop::Cop::SketchupDeprecations::ShowRubyPanel

Method is deprecated. Use `SKETCHUP_CONSOLE.show` instead.

Constants

MSG

Public Instance Methods

on_send(node) click to toggle source
# File lib/rubocop/sketchup/cop/deprecations/show_ruby_panel.rb, line 16
def on_send(node)
  return unless show_ruby_panel?(node)

  add_offense(node, location: :expression)
end