### The issue Having an Heredoc within an array makes some part of the document unhighlighted, such as the 3 `end` in the following example  ### How to reproduce ```ruby module Test class Test def test [<<~SQL] TEST SQL end def other_method end end end ```