seankross / mario

🍄 But our princess is in another castle!
Other
21 stars 1 forks source link

make sure it gives proper errors when run on whitespace or comment-only strings #39

Closed pgbovine closed 2 years ago

pgbovine commented 2 years ago

e.g.,:

pgbovine commented 2 years ago

e.g.,

$ node run-backend.js r '#just a comment   '
{
  "code": "#just a comment   ",
  "trace": [
    {
      "type": "error",
      "code_step": "NA",
      "mapping": {
        "message": {
          "header": "attempt to select less than one element in integerOneIndex",
          "body": [],
          "footer": []
        }
      },
      "data_frame": "NA"
    }
  ]
}
$ node run-backend.js r '   '
{
  "code": "   ",
  "trace": [
    {
      "type": "error",
      "code_step": "NA",
      "mapping": {
        "message": {
          "header": "attempt to select less than one element in integerOneIndex",
          "body": [],
          "footer": []
        }
      },
      "data_frame": "NA"
    }
  ]
}
seankross commented 2 years ago

Fixed in 18edf68