Exemplo n.º 1
0
 protected void update(string name, Url url, DataType type, BindingKind kind)
 {
     table.Insert(outer.analyzer, name, url, type, kind).IsBuiltin = true;
 }
Exemplo n.º 2
0
 protected void addMethod(string name, Url url, DataType type)
 {
     table.Insert(outer.analyzer, name, url, type, BindingKind.METHOD).IsBuiltin = true;
 }
Exemplo n.º 3
0
 protected void addClass(string name, Url url, DataType type)
 {
     table.Insert(outer.analyzer, name, url, type, BindingKind.CLASS).IsBuiltin = true;
 }
Exemplo n.º 4
0
 protected void addFunction(string name, Url url, DataType type)
 {
     table.Insert(outer.analyzer, name, url, outer.newFunc(type), BindingKind.FUNCTION).IsBuiltin = true;
 }
Exemplo n.º 5
0
 protected void addAttr(string name, Url url, DataType type)
 {
     table.Insert(outer.analyzer, name, url, type, BindingKind.ATTRIBUTE).IsBuiltin = true;
 }