Lines Matching refs:includer
1137 // @param includer [Module] the target class to include module into
1139 Opal.append_features = function(module, includer) {
1143 if (module_ancestors.indexOf(includer) !== -1) {
1152 var includer_ancestors = $ancestors(includer),
1160 // includer -> chain.first -> ...chain... -> chain.last -> includer.parent
1161 start_chain_after = includer.$$prototype;
1162 end_chain_on = Object.getPrototypeOf(includer.$$prototype);
1190 var parent = includer.$$prototype, module_iclass = Object.getPrototypeOf(parent);
1215 start_chain_after = includer.$$prototype;
1216 end_chain_on = Object.getPrototypeOf(includer.$$prototype);
1224 includer.$$own_included_modules = own_included_modules(includer);
3389 $def(self, '$append_features', function $$append_features(includer) {
3393 $deny_frozen_access(includer);
3394 Opal.append_features(self, includer);