Lines Matching refs:includer
1128 // @param includer [Module] the target class to include module into
1130 Opal.append_features = function(module, includer) { argument
1134 if (module_ancestors.indexOf(includer) !== -1) {
1143 var includer_ancestors = $ancestors(includer),
1151 // includer -> chain.first -> ...chain... -> chain.last -> includer.parent
1152 start_chain_after = includer.$$prototype;
1153 end_chain_on = Object.getPrototypeOf(includer.$$prototype);
1181 var parent = includer.$$prototype, module_iclass = Object.getPrototypeOf(parent);
1206 start_chain_after = includer.$$prototype;
1207 end_chain_on = Object.getPrototypeOf(includer.$$prototype);
1215 includer.$$own_included_modules = own_included_modules(includer);
3380 $def(self, '$append_features', function $$append_features(includer) { argument
3384 $deny_frozen_access(includer);
3385 Opal.append_features(self, includer);