Sha256: 2fd29e325c70b240b1869bfbd499c9e9792d1de01f51c17d519e68cad84a4458

Contents?: true

Size: 910 Bytes

Versions: 2

Compression:

Stored size: 910 Bytes

Contents

# frozen_string_literal: true

require_relative 'lox_compound_expr'

module Loxxy
  module Ast
    # rubocop: disable Style/AccessorGrouping
    class LoxFunStmt < LoxCompoundExpr
      attr_reader :name
      attr_reader :params
      attr_reader :body

      # @param aPosition [Rley::Lexical::Position] Position of the entry in the input stream.
      # @param aName [String]
      # @param arguments [Array<String>]
      # @param body [Ast::LoxBlockStmt]
      def initialize(aPosition, aName, paramList, aBody)
        super(aPosition, [])
        @name = aName.dup
        @params = paramList
        @body = aBody
      end

      # Part of the 'visitee' role in Visitor design pattern.
      # @param visitor [Ast::ASTVisitor] the visitor
      def accept(visitor)
        visitor.visit_fun_stmt(self)
      end
    end # class
    # rubocop: enable Style/AccessorGrouping
  end # module
end # module

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
loxxy-0.1.12 lib/loxxy/ast/lox_fun_stmt.rb
loxxy-0.1.11 lib/loxxy/ast/lox_fun_stmt.rb