lib/loxxy/ast/lox_binary_expr.rb in loxxy-0.0.16 vs lib/loxxy/ast/lox_binary_expr.rb in loxxy-0.0.17

- old
+ new

@@ -3,10 +3,10 @@ require_relative 'lox_compound_expr' module Loxxy module Ast class LoxBinaryExpr < LoxCompoundExpr - # @return [Symbol] + # @return [Symbol] message name to be sent to receiver 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]