Sha256: 7235a50203f623cdbebca7b884c7acdcd83192df78f0ae780721aa190f90477b
Contents?: true
Size: 476 Bytes
Versions: 168
Compression:
Stored size: 476 Bytes
Contents
# frozen_string_literal: true module RuboCop module AST # A node extension for `op_asgn` nodes. # This will be used in place of a plain node when the builder constructs # the AST, making its methods available to all assignment nodes within RuboCop. class OrAsgnNode < OpAsgnNode # The operator being used for assignment as a symbol. # # @return [Symbol] the assignment operator def operator :'||' end end end end
Version data entries
168 entries across 162 versions & 22 rubygems