JoshCheek / seeing_is_believing

Displays the results of every line of code in your file
1.31k stars 54 forks source link

bug: wraps LHS of assignment #23

Closed JoshCheek closed 10 years ago

JoshCheek commented 10 years ago
{}[:a] ||= {
}

Winds up wrapping like this

<{}[:a]> ||= {
}

But it should wrap like this

<{}[:a] ||= {
}>

Or maybe like this, IDK.

{}[:a] ||= <{
}>

ALSO Check &&= and others