As discovered in https://github.com/bblfsh/javascript-driver/pull/81#issuecomment-481845021 and noted at https://github.com/bblfsh/javascript-driver/pull/81#issuecomment-481852636 - bash driver does not handle _string literals_ in semantic mode the same way as other drivers do. On ```sh bc = "b\nc" ``` `//uast:String` Path query results in ``` "@type":"uast:String","Format":"","Value":"b\\nc" ``` where the expected result for semantic mode would be `b\ncq`.