OLD | NEW |
1 | 1 |
2 class ConvolverNodeJs extends AudioNodeJs implements ConvolverNode native "*Conv
olverNode" { | 2 class _ConvolverNodeJs extends _AudioNodeJs implements ConvolverNode native "*Co
nvolverNode" { |
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 bool get normalize() native "return this.normalize;"; | 8 bool get normalize() native "return this.normalize;"; |
9 | 9 |
10 void set normalize(bool value) native "this.normalize = value;"; | 10 void set normalize(bool value) native "this.normalize = value;"; |
11 } | 11 } |
OLD | NEW |