| Index: client/dom/generated/src/frog/ScriptProfileNode.dart
|
| diff --git a/client/dom/generated/src/frog/ScriptProfileNode.dart b/client/dom/generated/src/frog/ScriptProfileNode.dart
|
| index 22ae191a6af4f3589b0e7e164316092105670dc4..756ca6ac772f07364d20815e190e6b976867b75a 100644
|
| --- a/client/dom/generated/src/frog/ScriptProfileNode.dart
|
| +++ b/client/dom/generated/src/frog/ScriptProfileNode.dart
|
| @@ -1,23 +1,23 @@
|
|
|
| class ScriptProfileNode native "*ScriptProfileNode" {
|
|
|
| - int callUID;
|
| + int get callUID() native "return this.callUID;";
|
|
|
| - List children;
|
| + List get children() native "return this.children;";
|
|
|
| - String functionName;
|
| + String get functionName() native "return this.functionName;";
|
|
|
| - int lineNumber;
|
| + int get lineNumber() native "return this.lineNumber;";
|
|
|
| - int numberOfCalls;
|
| + int get numberOfCalls() native "return this.numberOfCalls;";
|
|
|
| - num selfTime;
|
| + num get selfTime() native "return this.selfTime;";
|
|
|
| - num totalTime;
|
| + num get totalTime() native "return this.totalTime;";
|
|
|
| - String url;
|
| + String get url() native "return this.url;";
|
|
|
| - bool visible;
|
| + bool get visible() native "return this.visible;";
|
|
|
| var dartObjectLocalStorage;
|
|
|
|
|