Example:
Is this a beta6-specific bug and fixed in the release version?var midiInPort = host.getMidiInPort(0);
println(typeof midiInPort.createNoteInput); // function
println(typeof midiInPort.createNoteInput.apply); // undefined (BWS2beta6) <-> function (BWS1.3.15)
println(typeof midiInPort.createNoteInput.call); // undefined (BWS2beta6) <-> function (BWS1.3.15)
println(midiInPort.createNoteInput instanceof Function); // false (BWS2beta6) <-> true (BWS1.3.15)
println((function(){}) instanceof Function); // true
println(typeof (function(){}).apply); // function
