Sha256: e3d0104b744c216b1c121a631dd3dee6ef005cb782b2374c06e323909f39bd39

Contents?: true

Size: 310 Bytes

Versions: 1

Compression:

Stored size: 310 Bytes

Contents

module Wool
  module SexpAnalysis
    # This class represents a Symbol in Ruby. It may have a known protocol (type),
    # class, value (if constant!), and a variety of other details.
    class Symbol < Struct.new(:protocol, :class_used, :value, :scope, :name)
      include Comparable
      
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
wool-0.5.1 lib/wool/analysis/symbol.rb