# frozen_string_literal: true require_relative 'lox_compound_expr' module Loxxy module Ast class LoxCallExpr < LoxCompoundExpr attr_accessor :callee attr_reader :arguments # @param aPosition [Rley::Lexical::Position] Position of the entry in the input stream. # @param argList [Array] def initialize(aPosition, argList) super(aPosition, []) @arguments = argList end # Part of the 'visitee' role in Visitor design pattern. # @param visitor [Ast::ASTVisitor] the visitor def accept(visitor) visitor.visit_call_expr(self) end end # class end # module end # module