dead_end 1.1.5 → 1.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8e2b1b2c93acbc5dde38ac7da8fc9dee057389e676bde9eb95683395b6b78ad8
4
- data.tar.gz: 0ef003bc94de8db02a1a0573bc77a0045b63207c6dd24557ec8f7b9dc76383f0
3
+ metadata.gz: ac6f2a5183bb09317d83211f3b1f7049154011ae0fbd73f08152864303a763bd
4
+ data.tar.gz: b6ea7a79863ffcc8664f3b693fabe49635f17fa48ed8e4529eeb48de9808b9c2
5
5
  SHA512:
6
- metadata.gz: 8a6f4849d79629110326aba138ab290ca0bdc9eedf427b13b21ed1cbae084be28d017bf20644684552dbb660bd9547b514951eb909cc894304d25db8b020310b
7
- data.tar.gz: 8f1056255fa656d206e1e2b4160b903b6d88d60043f150e1fbf943a852901488e52e0819fd29bb059109ff015e01a7167688010733d49b81057bb62d2d000bd0
6
+ metadata.gz: a5b1524a4a5844d932dfdbd7874b81c43fbe4a98ac30ee4258e8eaefbf33a98d470a96721ce7ee0ec8e61e5f3ce525dabecde40b3900f5e5b8964b71676d49df
7
+ data.tar.gz: f9c2bf9a500f3428627a4de15af3e7d75ce0446e2042f68b39ab27a97da0c60171b7449241a60b358c8d5045c46f65a3bab3ed1d11cd4881eb5c8da06414d5ba
data/CHANGELOG.md CHANGED
@@ -1,8 +1,12 @@
1
1
  ## HEAD (unreleased)
2
2
 
3
+ ## 1.1.6
4
+
5
+ - Consider if syntax error caused an unexpected variable instead of end (https://github.com/zombocom/dead_end/pull/58)
6
+
3
7
  ## 1.1.5
4
8
 
5
- - Source code with multiple syntax errors will be indentified by their first syntax error (https://github.com/zombocom/dead_end/pull/57)
9
+ - Parse error once and not twice if there's more than one available (https://github.com/zombocom/dead_end/pull/57)
6
10
 
7
11
  ## 1.1.4
8
12
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- dead_end (1.1.5)
4
+ dead_end (1.1.6)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -33,4 +33,4 @@ DEPENDENCIES
33
33
  stackprof
34
34
 
35
35
  BUNDLED WITH
36
- 2.2.9
36
+ 2.2.11
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DeadEnd
4
- VERSION = "1.1.5"
4
+ VERSION = "1.1.6"
5
5
  end
@@ -51,14 +51,14 @@ module DeadEnd
51
51
  when /unexpected end-of-input/
52
52
  @error_symbol = :missing_end
53
53
  when /expecting end-of-input/
54
- @error_symbol = :unmatched_syntax
55
54
  @unmatched_symbol = :end
56
- when /unexpected `end'/, # Ruby 2.7 and 3.0
57
- /unexpected end/, # Ruby 2.6
58
- /unexpected keyword_end/i # Ruby 2.5
59
-
60
- match = @error.match(/expecting '(?<unmatched_symbol>.*)'/)
61
- @unmatched_symbol = match[:unmatched_symbol].to_sym if match
55
+ @error_symbol = :unmatched_syntax
56
+ when /unexpected .* expecting '(?<unmatched_symbol>.*)'/
57
+ @unmatched_symbol = $1.to_sym if $1
58
+ @error_symbol = :unmatched_syntax
59
+ when /unexpected `end'/, # Ruby 2.7 and 3.0
60
+ /unexpected end/, # Ruby 2.6
61
+ /unexpected keyword_end/i # Ruby 2.5
62
62
 
63
63
  @error_symbol = :unmatched_syntax
64
64
  else
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dead_end
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.5
4
+ version: 1.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - schneems
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-02-11 00:00:00.000000000 Z
11
+ date: 2021-02-25 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: When you get an "unexpected end" in your syntax this gem helps you find
14
14
  it