tools/flutter_extract.php
authorAlan Knowles <alan@roojs.com>
Wed, 27 Mar 2019 07:37:34 +0000 (15:37 +0800)
committerAlan Knowles <alan@roojs.com>
Wed, 27 Mar 2019 07:37:34 +0000 (15:37 +0800)
tools/flutter_extract.php

index f3030e1..8083b57 100644 (file)
@@ -10,7 +10,7 @@ class  Prop {
     var $memberOf = '';
 }
 
-class  Method {  // doubles up for events?
+class  Method {  // doubles up for events? - normally 'on' is the name
     var $name = '';
     var $type = ''; // return...
     var $desc = '';
@@ -18,4 +18,13 @@ class  Method {  // doubles up for events?
     var $memberOf = '';
     var $sig = '';
     var $args  = array();
+}
+
+class Cls {
+    var $name;
+    var $extends;
+    var $events = array();
+    var $methods = array();
+    var $props = array();
+    
 }
\ No newline at end of file