Sha256: 1725e0c2c68c00ef4d05e1d80146404af4be9d5b051fc068c06cbb77a14012da

Contents?: true

Size: 796 Bytes

Versions: 3

Compression:

Stored size: 796 Bytes

Contents

# frozen_string_literal: true

require_relative 'lox_compound_expr'

module Loxxy
  module Ast
    class LoxBinaryExpr < LoxCompoundExpr
      # @return [Symbol]
      attr_reader :operator

      # @param aPosition [Rley::Lexical::Position] Position of the entry in the input stream.
      # @param operand1 [Loxxy::Ast::LoxNode]
      # @param operand2 [Loxxy::Ast::LoxNode]
      def initialize(aPosition, anOperator, operand1, operand2)
        super(aPosition, [operand1, operand2])
        @operator = anOperator
      end

      # Part of the 'visitee' role in Visitor design pattern.
      # @param visitor [Ast::ASTVisitor] the visitor
      def accept(visitor)
        visitor.visit_binary_expr(self)
      end

      alias operands subnodes
    end # class
  end # module
end # module

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
loxxy-0.0.16 lib/loxxy/ast/lox_binary_expr.rb
loxxy-0.0.15 lib/loxxy/ast/lox_binary_expr.rb
loxxy-0.0.14 lib/loxxy/ast/lox_binary_expr.rb