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 _ScriptProfileWrappingImplementation extends DOMWrapperBase implements Scr
iptProfile { | |
8 _ScriptProfileWrappingImplementation() : super() {} | |
9 | |
10 static create__ScriptProfileWrappingImplementation() native { | |
11 return new _ScriptProfileWrappingImplementation(); | |
12 } | |
13 | |
14 ScriptProfileNode get head() { return _get_head(this); } | |
15 static ScriptProfileNode _get_head(var _this) native; | |
16 | |
17 String get title() { return _get_title(this); } | |
18 static String _get_title(var _this) native; | |
19 | |
20 int get uid() { return _get_uid(this); } | |
21 static int _get_uid(var _this) native; | |
22 | |
23 String get typeName() { return "ScriptProfile"; } | |
24 } | |
OLD | NEW |