| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 // WARNING: Do not edit - generated code. |
| 6 |
| 7 class SVGElementInstanceWrappingImplementation extends EventTargetWrappingImplem
entation implements SVGElementInstance { |
| 8 SVGElementInstanceWrappingImplementation._wrap(ptr) : super._wrap(ptr) {} |
| 9 |
| 10 SVGElementInstanceList get childNodes() { return LevelDom.wrapSVGElementInstan
ceList(_ptr.childNodes); } |
| 11 |
| 12 SVGElement get correspondingElement() { return LevelDom.wrapSVGElement(_ptr.co
rrespondingElement); } |
| 13 |
| 14 SVGUseElement get correspondingUseElement() { return LevelDom.wrapSVGUseElemen
t(_ptr.correspondingUseElement); } |
| 15 |
| 16 SVGElementInstance get firstChild() { return LevelDom.wrapSVGElementInstance(_
ptr.firstChild); } |
| 17 |
| 18 SVGElementInstance get lastChild() { return LevelDom.wrapSVGElementInstance(_p
tr.lastChild); } |
| 19 |
| 20 SVGElementInstance get nextSibling() { return LevelDom.wrapSVGElementInstance(
_ptr.nextSibling); } |
| 21 |
| 22 SVGElementInstance get parentNode() { return LevelDom.wrapSVGElementInstance(_
ptr.parentNode); } |
| 23 |
| 24 SVGElementInstance get previousSibling() { return LevelDom.wrapSVGElementInsta
nce(_ptr.previousSibling); } |
| 25 |
| 26 } |
| OLD | NEW |