Skip to content

Commit

Permalink
Fixes (or ignores) ffi crash (#676)
Browse files Browse the repository at this point in the history
Issue #634
  • Loading branch information
gastonmorixe authored Nov 5, 2023
1 parent 294e0aa commit f349688
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/solargraph/complex_type.rb
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ def parse *strings, partial: false
paren_stack = 0
base = String.new
subtype_string = String.new
type_string.each_char do |char|
type_string&.each_char do |char|
if char == '='
#raise ComplexTypeError, "Invalid = in type #{type_string}" unless curly_stack > 0
elsif char == '<'
Expand Down

0 comments on commit f349688

Please sign in to comment.