unitizer icon indicating copy to clipboard operation
unitizer copied to clipboard

`parse_with_comments` miss-allocating comment

Open brodieG opened this issue 9 years ago • 0 comments

  expect_equal(
    fun1(a, b, c, d, e, f), # internal comment
    runif(20)
  )   # "external" comment

led to:

    # internal comment
    fun1(a, b, c, d, e, f)
    # "external" comment
    fun1(a)

Not clear whether this is a parse_with_comments issue or a translation issue.

brodieG avatar Apr 09 '15 00:04 brodieG