| OLD | NEW |
| 1 | 1 |
| 2 class AudioBufferSourceNodeJs extends AudioSourceNodeJs implements AudioBufferSo
urceNode native "*AudioBufferSourceNode" { | 2 class _AudioBufferSourceNodeJs extends _AudioSourceNodeJs implements AudioBuffer
SourceNode native "*AudioBufferSourceNode" { |
| 3 | 3 |
| 4 AudioBufferJs get buffer() native "return this.buffer;"; | 4 _AudioBufferJs get buffer() native "return this.buffer;"; |
| 5 | 5 |
| 6 void set buffer(AudioBufferJs value) native "this.buffer = value;"; | 6 void set buffer(_AudioBufferJs value) native "this.buffer = value;"; |
| 7 | 7 |
| 8 AudioGainJs get gain() native "return this.gain;"; | 8 _AudioGainJs get gain() native "return this.gain;"; |
| 9 | 9 |
| 10 bool get loop() native "return this.loop;"; | 10 bool get loop() native "return this.loop;"; |
| 11 | 11 |
| 12 void set loop(bool value) native "this.loop = value;"; | 12 void set loop(bool value) native "this.loop = value;"; |
| 13 | 13 |
| 14 bool get looping() native "return this.looping;"; | 14 bool get looping() native "return this.looping;"; |
| 15 | 15 |
| 16 void set looping(bool value) native "this.looping = value;"; | 16 void set looping(bool value) native "this.looping = value;"; |
| 17 | 17 |
| 18 AudioParamJs get playbackRate() native "return this.playbackRate;"; | 18 _AudioParamJs get playbackRate() native "return this.playbackRate;"; |
| 19 | 19 |
| 20 void noteGrainOn(num when, num grainOffset, num grainDuration) native; | 20 void noteGrainOn(num when, num grainOffset, num grainDuration) native; |
| 21 | 21 |
| 22 void noteOff(num when) native; | 22 void noteOff(num when) native; |
| 23 | 23 |
| 24 void noteOn(num when) native; | 24 void noteOn(num when) native; |
| 25 } | 25 } |
| OLD | NEW |