mgsnova/crisp

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

Summary

Maintainability
A
0 mins
Test Coverage
module Crisp
  module Nodes
    # The nil node
    class NilLiteral < Primitive
      # yes it resolves to nil
      def resolve(env)
        nil
      end
    end
  end
end