Files
codeql/ruby/ql/lib
Harry Maclean 32c93e70e2 Include simple interpolations in getValueText
When calculating `StringlikeLiteral.getValueText`, include results from
interpolations where we can determine their string value. For example:

    b = "b" # local variable
    D = "d" # constant

    "a#{b}c"     # getValueText() = "abc"
    "a#{b}c{D}"  # getValueText() = "abcd"
    /#a#{b}c{D}/ # getValueText() = "abcd"
2022-01-06 12:27:03 +13:00
..
2021-12-03 17:04:00 +01:00
2021-10-15 11:47:28 +02:00
2022-01-03 20:11:15 +00:00