Example #1
0
 public JSObject()
 {
     Fields     = new List <JSField>();
     Parameters = new List <JSParameter>();
     Properties = new List <JSFunction>();
     Functions  = new List <JSFunction>();
     ReturnType = new JSReturnType();
     Events     = new List <JSField>();
 }
Example #2
0
 public JSFunction()
 {
     Parameters = new List <JSParameter>();
     ReturnType = new JSReturnType();
 }