Class: Herb::Errors::NestedERBTagError

Inherits:
Error
  • Object
show all
Includes:
Colors
Defined in:
lib/herb/errors.rb,
sig/herb/errors.rbs,
ext/herb/error_helpers.c

Constant Summary

Constants included from Colors

Colors::CLEAR_SCREEN, Colors::HIDE_CURSOR, Colors::SHOW_CURSOR

Instance Attribute Summary collapse

Attributes inherited from Error

#location, #message, #type

Instance Method Summary collapse

Methods included from Colors

bold, bright_magenta, cyan, dimmed, enabled?, fg, fg_bg, green, magenta, red, #self?.bold, #self?.bright_magenta, #self?.cyan, #self?.dimmed, #self?.enabled?, #self?.fg, #self?.fg_bg, #self?.green, #self?.magenta, #self?.red, #self?.white, #self?.yellow, white, yellow

Methods inherited from Error

#class_name, #error_name, #to_json

Constructor Details

#initialize(type, location, message, opening_tag, nested_tag_line, nested_tag_column) ⇒ NestedERBTagError

: (String, Location?, String, Herb::Token, Integer, Integer) -> void

Parameters:



978
979
980
981
982
983
# File 'lib/herb/errors.rb', line 978

def initialize(type, location, message, opening_tag, nested_tag_line, nested_tag_column)
  super(type, location, message)
  @opening_tag = opening_tag
  @nested_tag_line = nested_tag_line
  @nested_tag_column = nested_tag_column
end

Instance Attribute Details

#nested_tag_columnInteger? (readonly)

: Integer?

Returns:

  • (Integer, nil)


975
976
977
# File 'lib/herb/errors.rb', line 975

def nested_tag_column
  @nested_tag_column
end

#nested_tag_lineInteger? (readonly)

: Integer?

Returns:

  • (Integer, nil)


974
975
976
# File 'lib/herb/errors.rb', line 974

def nested_tag_line
  @nested_tag_line
end

#opening_tagHerb::Token? (readonly)

| opening_tag: Herb::Token?, | nested_tag_line: Integer?, | nested_tag_column: Integer?, | }

Returns:



973
974
975
# File 'lib/herb/errors.rb', line 973

def opening_tag
  @opening_tag
end

Instance Method Details

#inspectString

: () -> String

Returns:

  • (String)


986
987
988
# File 'lib/herb/errors.rb', line 986

def inspect
  tree_inspect.rstrip.gsub(/\s+$/, "")
end

#to_hashserialized_nested_erb_tag_error

: () -> serialized_nested_erb_tag_error

Returns:

  • (serialized_nested_erb_tag_error)


991
992
993
994
995
996
997
# File 'lib/herb/errors.rb', line 991

def to_hash
  super.merge(
    opening_tag: opening_tag,
    nested_tag_line: nested_tag_line,
    nested_tag_column: nested_tag_column
  ) #: Herb::serialized_nested_erb_tag_error
end

#tree_inspect(indent: 0, depth: 0, depth_limit: 25) ⇒ String

: (?indent: Integer, ?depth: Integer, ?depth_limit: Integer) -> String

Parameters:

  • indent: (Integer) (defaults to: 0)
  • depth: (Integer) (defaults to: 0)
  • depth_limit: (Integer) (defaults to: 25)

Returns:

  • (String)


1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
# File 'lib/herb/errors.rb', line 1000

def tree_inspect(indent: 0, depth: 0, depth_limit: 25)
  output = +""

  output += white("@ #{bold(red(error_name))} #{dimmed("(location: #{location&.tree_inspect})\n")}")
  output += white("├── message: #{green(message.inspect)}\n")
  output += white("├── opening_tag: ")
  output += opening_tag ? opening_tag.tree_inspect : magenta("")
  output += "\n"
  output += white("├── nested_tag_line: #{green(nested_tag_line.inspect)}\n")
  output += white("└── nested_tag_column: #{green(nested_tag_column.inspect)}\n")
  output += %(\n)

  output.gsub(/^/, "    " * indent)
end