| OLD | NEW |
| 1 | 1 |
| 2 class AudioNodeJs extends DOMTypeJs implements AudioNode native "*AudioNode" { | 2 class _AudioNodeJs extends _DOMTypeJs implements AudioNode native "*AudioNode" { |
| 3 | 3 |
| 4 AudioContextJs get context() native "return this.context;"; | 4 _AudioContextJs get context() native "return this.context;"; |
| 5 | 5 |
| 6 int get numberOfInputs() native "return this.numberOfInputs;"; | 6 int get numberOfInputs() native "return this.numberOfInputs;"; |
| 7 | 7 |
| 8 int get numberOfOutputs() native "return this.numberOfOutputs;"; | 8 int get numberOfOutputs() native "return this.numberOfOutputs;"; |
| 9 | 9 |
| 10 void connect(AudioNodeJs destination, int output, int input) native; | 10 void connect(_AudioNodeJs destination, int output, int input) native; |
| 11 | 11 |
| 12 void disconnect(int output) native; | 12 void disconnect(int output) native; |
| 13 } | 13 } |
| OLD | NEW |