Sha256: f8ac2ae3e0c896e9030519fce053c6fa45c91aa3cdbb6fb362b8f5369ed4dabc
Contents?: true
Size: 428 Bytes
Versions: 12
Compression:
Stored size: 428 Bytes
Contents
# frozen_string_literal: true module Synvert::Core::NodeQuery::Compiler # Boolean represents a ruby boolean value. class Boolean include Comparable # Initialize a Boolean. # @param value [Boolean] the boolean value def initialize(value:) @value = value end # Get valid operators. def valid_operators SIMPLE_VALID_OPERATORS end def to_s @value.to_s end end end
Version data entries
12 entries across 12 versions & 1 rubygems