206207208209210211212213214215216
IdlScopeBase parent = root; if (nm.length > 1) { for (int i = 0; i < nm.length - 1; ++i) { IdlModule mod = IdlModule.create(parent, nm[i]); parent.addToScope(mod); parent = mod; } } intf = IdlInterface.create(parent, nm[nm.length - 1]);
172173174175176177178179180181182
207208209210211212213214215216217
185186187188189190191192193194195
IdlScopeBase parent = root; if (nm.length > 1) { for (int i = 0; i < nm.length - 1; ++i) { IdlModule mod = IdlModule.create(parent, nm[i]); parent.addToScope(mod); parent = mod; } }
182183184185186187188189190191192