class Core::Define::Location
- public
Attributes
line[R]
- public
path[R]
- public
Public Class Methods
new(path:, line:)
click to toggle source
# File lib/core/define/location.rb, line 10 def initialize(path:, line:) @path = Pathname.new(path).freeze @line = line.to_i.freeze end