| OLD | NEW |
| 1 | 1 |
| 2 class XSLTProcessor native "XSLTProcessor" { | 2 class XSLTProcessor native "*XSLTProcessor" { |
| 3 | 3 |
| 4 void clearParameters() native; | 4 void clearParameters() native; |
| 5 | 5 |
| 6 String getParameter(String namespaceURI, String localName) native; | 6 String getParameter(String namespaceURI, String localName) native; |
| 7 | 7 |
| 8 void importStylesheet(Node stylesheet) native; | 8 void importStylesheet(Node stylesheet) native; |
| 9 | 9 |
| 10 void removeParameter(String namespaceURI, String localName) native; | 10 void removeParameter(String namespaceURI, String localName) native; |
| 11 | 11 |
| 12 void reset() native; | 12 void reset() native; |
| 13 | 13 |
| 14 void setParameter(String namespaceURI, String localName, String value) native; | 14 void setParameter(String namespaceURI, String localName, String value) native; |
| 15 | 15 |
| 16 Document transformToDocument(Node source) native; | 16 Document transformToDocument(Node source) native; |
| 17 | 17 |
| 18 DocumentFragment transformToFragment(Node source, Document docVal) native; | 18 DocumentFragment transformToFragment(Node source, Document docVal) native; |
| 19 | 19 |
| 20 var dartObjectLocalStorage; | 20 var dartObjectLocalStorage; |
| 21 | 21 |
| 22 String get typeName() native; | 22 String get typeName() native; |
| 23 } | 23 } |
| OLD | NEW |