| 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 _SVGTestsWrappingImplementation extends DOMWrapperBase implements SVGTests
{ |
| 8 _SVGTestsWrappingImplementation() : super() {} |
| 9 |
| 10 static create__SVGTestsWrappingImplementation() native { |
| 11 return new _SVGTestsWrappingImplementation(); |
| 12 } |
| 13 |
| 14 SVGStringList get requiredExtensions() { return _get_requiredExtensions(this);
} |
| 15 static SVGStringList _get_requiredExtensions(var _this) native; |
| 16 |
| 17 SVGStringList get requiredFeatures() { return _get_requiredFeatures(this); } |
| 18 static SVGStringList _get_requiredFeatures(var _this) native; |
| 19 |
| 20 SVGStringList get systemLanguage() { return _get_systemLanguage(this); } |
| 21 static SVGStringList _get_systemLanguage(var _this) native; |
| 22 |
| 23 bool hasExtension(String extension) { |
| 24 return _hasExtension(this, extension); |
| 25 } |
| 26 static bool _hasExtension(receiver, extension) native; |
| 27 |
| 28 String get typeName() { return "SVGTests"; } |
| 29 } |
| OLD | NEW |