tamzinblake / js3-mode

A chimeric fork of js2-mode and js-mode
GNU General Public License v3.0
181 stars 13 forks source link

Incorrect '+' behavior #11

Closed tamzinblake closed 13 years ago

tamzinblake commented 13 years ago

It does:

function test() {
  var x
  x.report("test1"
  +"test2")
}

Expected:

function test() {
  var x
  x.report("test1"
          +"test2")
}

Originally reported as part of Issue #10

tamzinblake commented 13 years ago

Closed by commit af550de