Sha256: b80f4e79adc056983b491ceace3a4865e2fc88a159370f5ffbc622c3179162e2

Contents?: true

Size: 1.32 KB

Versions: 201

Compression:

Stored size: 1.32 KB

Contents

grammar Arithmetic  
  rule expression
    comparative / additive
  end
  
  rule comparative
    head:additive
    tail:(
      space operator:equality_op
      space operand:additive)* <BinaryOperation>
  end
  
  rule equality_op
    '==' {
      def apply(a, b)
        a == b
      end
    }
  end
  
  rule additive
    head:multitive
    tail:(
      space operator:additive_op
      space operand:multitive)* <BinaryOperation>
  end
  
  rule additive_op
    '+' {
      def apply(a, b)
        a + b
      end
    }
    /
    '-' {
      def apply(a, b)
        a - b
      end
    }
  end

  rule multitive
    head:primary
    tail:(
      space operator:multitive_op
      space operand:primary)* <BinaryOperation>
  end
  
  rule multitive_op
    '*' {
      def apply(a, b)
        a * b
      end
    }
    /
    '/' {
      def apply(a, b)
        a / b
      end
    }
  end  
  
  rule primary
    variable
    /
    number
    /
    '(' space expression space ')' {
      def eval(env={})
        expression.eval(env)
      end
    }
  end

  rule variable
    [a-z]+ {
      def eval(env={})
        env[name]
      end
      
      def name
        text_value
      end
    }
  end

  rule number
    ([1-9] [0-9]* / '0') {
      def eval(env={})
        text_value.to_i
      end
    }
  end
  
  rule space
    ' '*
  end
end

Version data entries

201 entries across 186 versions & 30 rubygems

Version Path
treetop-1.6.3 examples/lambda_calculus/arithmetic.treetop
active_mailer-0.0.10 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/treetop-1.4.12/examples/lambda_calculus/arithmetic.treetop
treetop-1.6.2 examples/lambda_calculus/arithmetic.treetop
judge-2.0.5 vendor/bundle/ruby/2.1.0/gems/treetop-1.4.12/examples/lambda_calculus/arithmetic.treetop
treetop-1.5.3 examples/lambda_calculus/arithmetic.treetop
treetop-1.5.1 examples/lambda_calculus/arithmetic.treetop
treetop-1.4.15 examples/lambda_calculus/arithmetic.treetop
challah-1.0.0 vendor/bundle/gems/treetop-1.4.14/examples/lambda_calculus/arithmetic.treetop
classiccms-0.7.2 vendor/bundle/gems/treetop-1.4.10/examples/lambda_calculus/arithmetic.treetop
classiccms-0.7.1 vendor/bundle/gems/treetop-1.4.10/examples/lambda_calculus/arithmetic.treetop
swipe-rails-0.0.5 vendor/bundle/gems/treetop-1.4.14/examples/lambda_calculus/arithmetic.treetop
active_mailer-0.0.9 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/treetop-1.4.12/examples/lambda_calculus/arithmetic.treetop
active_mailer-0.0.8 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/treetop-1.4.12/examples/lambda_calculus/arithmetic.treetop
active_mailer-0.0.7 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/treetop-1.4.12/examples/lambda_calculus/arithmetic.treetop
active_mailer-0.0.6 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/treetop-1.4.12/examples/lambda_calculus/arithmetic.treetop
treetop-1.4.14 examples/lambda_calculus/arithmetic.treetop
classiccms-0.7.0 vendor/bundle/gems/treetop-1.4.10/examples/lambda_calculus/arithmetic.treetop
challah-1.0.0.beta3 vendor/bundle/gems/treetop-1.4.12/examples/lambda_calculus/arithmetic.treetop
fc-webicons-0.0.4 vendor/bundle/ruby/1.9.1/gems/treetop-1.4.12/examples/lambda_calculus/arithmetic.treetop
challah-1.0.0.beta2 vendor/bundle/gems/treetop-1.4.12/examples/lambda_calculus/arithmetic.treetop