class Sass::Script::CrossBrowserFunctionCall
Attributes
args[RW]
name[RW]
Public Class Methods
new(name, args)
click to toggle source
# File lib/compass/sass_extensions/monkey_patches/browser_support.rb, line 25 def initialize(name, args) self.name = name self.args = args end
Public Instance Methods
children()
click to toggle source
# File lib/compass/sass_extensions/monkey_patches/browser_support.rb, line 30 def children args end
inspect()
click to toggle source
# File lib/compass/sass_extensions/monkey_patches/browser_support.rb, line 34 def inspect to_s end
to_s(options = self.options)
click to toggle source
# File lib/compass/sass_extensions/monkey_patches/browser_support.rb, line 38 def to_s(options = self.options) s = "#{name}(#{args.join(", ")})" end