mgsnova/crisp

View on GitHub
lib/crisp/nodes/float_literal.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Crisp
  module Nodes
    # The float node
    class FloatLiteral < Primitive
      # returns float value
      def resolve(env)
        text_value.to_f
      end
    end
  end
end