Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(34)

Side by Side Diff: lib/html/src/SVGElementInstanceWrappingImplementation.dart

Issue 10919146: Get rid of a lot of () for getters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 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 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. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // WARNING: Do not edit - generated code. 5 // WARNING: Do not edit - generated code.
6 6
7 class SVGElementInstanceWrappingImplementation extends EventTargetWrappingImplem entation implements SVGElementInstance { 7 class SVGElementInstanceWrappingImplementation extends EventTargetWrappingImplem entation implements SVGElementInstance {
8 SVGElementInstanceWrappingImplementation._wrap(ptr) : super._wrap(ptr) {} 8 SVGElementInstanceWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
9 9
10 SVGElementInstanceList get childNodes() { return LevelDom.wrapSVGElementInstan ceList(_ptr.childNodes); } 10 SVGElementInstanceList get childNodes { return LevelDom.wrapSVGElementInstance List(_ptr.childNodes); }
11 11
12 SVGElement get correspondingElement() { return LevelDom.wrapSVGElement(_ptr.co rrespondingElement); } 12 SVGElement get correspondingElement { return LevelDom.wrapSVGElement(_ptr.corr espondingElement); }
13 13
14 SVGUseElement get correspondingUseElement() { return LevelDom.wrapSVGUseElemen t(_ptr.correspondingUseElement); } 14 SVGUseElement get correspondingUseElement { return LevelDom.wrapSVGUseElement( _ptr.correspondingUseElement); }
15 15
16 SVGElementInstance get firstChild() { return LevelDom.wrapSVGElementInstance(_ ptr.firstChild); } 16 SVGElementInstance get firstChild { return LevelDom.wrapSVGElementInstance(_pt r.firstChild); }
17 17
18 SVGElementInstance get lastChild() { return LevelDom.wrapSVGElementInstance(_p tr.lastChild); } 18 SVGElementInstance get lastChild { return LevelDom.wrapSVGElementInstance(_ptr .lastChild); }
19 19
20 SVGElementInstance get nextSibling() { return LevelDom.wrapSVGElementInstance( _ptr.nextSibling); } 20 SVGElementInstance get nextSibling { return LevelDom.wrapSVGElementInstance(_p tr.nextSibling); }
21 21
22 SVGElementInstance get parentNode() { return LevelDom.wrapSVGElementInstance(_ ptr.parentNode); } 22 SVGElementInstance get parentNode { return LevelDom.wrapSVGElementInstance(_pt r.parentNode); }
23 23
24 SVGElementInstance get previousSibling() { return LevelDom.wrapSVGElementInsta nce(_ptr.previousSibling); } 24 SVGElementInstance get previousSibling { return LevelDom.wrapSVGElementInstanc e(_ptr.previousSibling); }
25 25
26 } 26 }
OLDNEW
« no previous file with comments | « lib/html/src/SVGElementInstance.dart ('k') | lib/html/src/SVGElementWrappingImplementation.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698