Class: Jaina::Parser::CodeConverter::ToPostfixForm Private

Inherits:
Object
  • Object
show all
Extended by:
Forwardable
Defined in:
lib/jaina/parser/code_converter/to_postfix_form.rb

Overview

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Since:

  • 0.1.0

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(program) ⇒ void

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Parameters:

  • program (String)

Since:

  • 0.1.0



33
34
35
36
# File 'lib/jaina/parser/code_converter/to_postfix_form.rb', line 33

def initialize(program)
  @program = program.dup.tap(&:freeze)
  @tokens = Jaina::Parser::Tokenizer.tokenize(program)
end

Class Method Details

.call(program) ⇒ String

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Parameters:

  • program (String)

Returns:

  • (String)

Since:

  • 0.1.0



16
17
18
# File 'lib/jaina/parser/code_converter/to_postfix_form.rb', line 16

def call(program)
  new(program).call
end

Instance Method Details

#callString

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns:

  • (String)

Since:

  • 0.1.0



42
43
44
# File 'lib/jaina/parser/code_converter/to_postfix_form.rb', line 42

def call
  to_postfix_form
end