| OLD | NEW |
| 1 | 1 |
| 2 class ProcessingInstructionJs extends NodeJs implements ProcessingInstruction na
tive "*ProcessingInstruction" { | 2 class _ProcessingInstructionJs extends _NodeJs implements ProcessingInstruction
native "*ProcessingInstruction" { |
| 3 | 3 |
| 4 String get data() native "return this.data;"; | 4 String get data() native "return this.data;"; |
| 5 | 5 |
| 6 void set data(String value) native "this.data = value;"; | 6 void set data(String value) native "this.data = value;"; |
| 7 | 7 |
| 8 StyleSheetJs get sheet() native "return this.sheet;"; | 8 _StyleSheetJs get sheet() native "return this.sheet;"; |
| 9 | 9 |
| 10 String get target() native "return this.target;"; | 10 String get target() native "return this.target;"; |
| 11 } | 11 } |
| OLD | NEW |