Sha256: eeaa25284aaf5111335014dd8fe99e97e6989bf1060e25326424d4af08298ac2
Contents?: true
Size: 430 Bytes
Versions: 7093
Compression:
Stored size: 430 Bytes
Contents
# frozen_string_literal: true module RuboCop module AST # Common functionality for nodes that can be used as modifiers: # `if`, `while`, `until` module ModifierNode # Checks whether the node is in a modifier form, i.e. a condition # trailing behind an expression. # # @return [Boolean] whether the node is a modifier def modifier_form? loc.end.nil? end end end end
Version data entries
7,093 entries across 7,057 versions & 51 rubygems