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