Sha256: 8f4aa0e06e9a6bc094aa6ed33d76e077a8ece55c38052085fb30d3e31834fb2d
Contents?: true
Size: 301 Bytes
Versions: 4
Compression:
Stored size: 301 Bytes
Contents
module Yoda module AST class CenterOperatorNode < Node # @return [Symbol] def operator type end # @return [Node] def left_content children[0] end # @return [Node] def right_content children[1] end end end end
Version data entries
4 entries across 4 versions & 1 rubygems