DEBSOURCES
Skip Quicknav
sources / ruby-rubocop-ast / 1.49.0-2 / lib / rubocop / ast / node / const_node.rb
12345678910
# frozen_string_literal: true module RuboCop module AST # A node extension for `const` nodes. class ConstNode < Node include ConstantNode end end end