OLD | NEW |
1 | 1 |
2 class ScriptProfileNodeJs extends DOMTypeJs implements ScriptProfileNode native
"*ScriptProfileNode" { | 2 class _ScriptProfileNodeJs extends _DOMTypeJs implements ScriptProfileNode nativ
e "*ScriptProfileNode" { |
3 | 3 |
4 int get callUID() native "return this.callUID;"; | 4 int get callUID() native "return this.callUID;"; |
5 | 5 |
6 List get children() native "return this.children;"; | 6 List get children() native "return this.children;"; |
7 | 7 |
8 String get functionName() native "return this.functionName;"; | 8 String get functionName() native "return this.functionName;"; |
9 | 9 |
10 int get lineNumber() native "return this.lineNumber;"; | 10 int get lineNumber() native "return this.lineNumber;"; |
11 | 11 |
12 int get numberOfCalls() native "return this.numberOfCalls;"; | 12 int get numberOfCalls() native "return this.numberOfCalls;"; |
13 | 13 |
14 num get selfTime() native "return this.selfTime;"; | 14 num get selfTime() native "return this.selfTime;"; |
15 | 15 |
16 num get totalTime() native "return this.totalTime;"; | 16 num get totalTime() native "return this.totalTime;"; |
17 | 17 |
18 String get url() native "return this.url;"; | 18 String get url() native "return this.url;"; |
19 | 19 |
20 bool get visible() native "return this.visible;"; | 20 bool get visible() native "return this.visible;"; |
21 } | 21 } |
OLD | NEW |