Sha256: 853d3ec8b67561a2cece9d5baf570b5d4dad90227cb0774704e8dd9d3b5ddc5d
Contents?: true
Size: 502 Bytes
Versions: 175
Compression:
Stored size: 502 Bytes
Contents
module Sass::Script # The abstract superclass for SassScript parse tree nodes. # # Use \{#perform} to evaluate a parse tree. class Node # Evaluates the node. # # @param environment [Sass::Environment] The environment in which to evaluate the SassScript # @return [Literal] The SassScript object that is the value of the SassScript def perform(environment) raise NotImplementedError.new("All subclasses of Sass::Script::Node must override #perform.") end end end
Version data entries
175 entries across 174 versions & 7 rubygems