diff options
author | Kevin Newton <[email protected]> | 2024-07-02 14:27:04 -0400 |
---|---|---|
committer | Kevin Newton <[email protected]> | 2024-07-11 14:25:54 -0400 |
commit | ca48fb76fb0669ca0666a7aa129e1f5d2b7468da () | |
tree | fce04cbe37f6976af6824f885a6032f66df7d470 /lib/prism/parse_result | |
parent | 678dd769e560db9cebff41218e3413e6688aaf12 (diff) |
[ruby/prism] Move location to second position for node initializers
https://.com/ruby/prism/commit/4cc0eda4ca
-rw-r--r-- | lib/prism/parse_result/errors.rb | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -4,13 +4,18 @@ require "stringio" module Prism class ParseResult < Result class Errors attr_reader :parse_result def initialize(parse_result) @parse_result = parse_result end def format error_lines = {} parse_result.errors.each do |error| |