OLD | NEW |
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 interface ScriptProfileNode { | 7 interface ScriptProfileNode { |
8 | 8 |
9 int get callUID(); | 9 final int callUID; |
10 | 10 |
11 List get children(); | 11 final List children; |
12 | 12 |
13 String get functionName(); | 13 final String functionName; |
14 | 14 |
15 int get lineNumber(); | 15 final int lineNumber; |
16 | 16 |
17 int get numberOfCalls(); | 17 final int numberOfCalls; |
18 | 18 |
19 num get selfTime(); | 19 final num selfTime; |
20 | 20 |
21 num get totalTime(); | 21 final num totalTime; |
22 | 22 |
23 String get url(); | 23 final String url; |
24 | 24 |
25 bool get visible(); | 25 final bool visible; |
26 } | 26 } |
OLD | NEW |