With this regexp: ```ruby /\ca/ ``` the escape sequence results in a regular expression with source: ```ruby /\x01/ ``` but parser gives: `/\u0001/`. I don't know if this is actually a bug or not, but it's surprising.