Skip to content

CSV.parse fails with debugger activated #39

@yo-ajdd

Description

@yo-ajdd

Sketchup 2024, Windows 11, sketchup-ruby-debugger 2024
Steps to reproduce:

  • Deactivate debugger (I change the .dll to .off to deactivate)
  • Start Sketchup
  • In Ruby console type
    require "csv"
    returns =>true
  • Type:
    string = "foo,0\nbar,1\nbaz,2\n" CSV.parse(string)
  • returns
    => [["foo", "0"], ["bar", "1"], ["baz", "2"]]

Now reactivate debugger (change the .off to .dll)

  • Start Sketchup
  • In Ruby console type
    require "csv"
  • returns =>true
  • Type:
    string = "foo,0\nbar,1\nbaz,2\n" CSV.parse(string)
  • returns
    #<TypeError: no implicit conversion of nil into String> => nil

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions