Parent

Methods

Less::ParseError

Thrown whenever an error occurs parsing and/or serializing less source. It is intended to wrap a native V8::JSError

Public Class Methods

new(error) click to toggle source

Copies over `error`‘s message and backtrace @param [V8::JSError] error native error

# File lib/less/parser.rb, line 100
def initialize(error)
  super(error.message)
  @backtrace = error.backtrace
end

Public Instance Methods

backtrace() click to toggle source

@return [Array] the backtrace frames

# File lib/less/parser.rb, line 106
def backtrace
  @backtrace
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.