15 years agoDoc fix for CMOP::Method from sorear
Shawn M Moore [Mon, 8 Dec 2008 01:08:40 +0000]
Doc fix for CMOP::Method from sorear

15 years agoNo, Sartak, you cannot retroactively add code to a released tarball ;)
Dave Rolsky [Sun, 7 Dec 2008 18:47:04 +0000]
No, Sartak, you cannot retroactively add code to a released tarball ;)

15 years agoRename the test class from "Base" because case insensitive file systems try to subcla...
Shawn M Moore [Sun, 7 Dec 2008 02:03:21 +0000]
Rename the test class from "Base" because case insensitive file systems try to subclass 'base'. Whee.

15 years agoChangelog entry
Shawn M Moore [Sun, 7 Dec 2008 01:59:43 +0000]
Changelog entry

15 years agoPass options to Class::MOP::Package->_new (fixes failing Moose tests)
Shawn M Moore [Sun, 7 Dec 2008 01:31:27 +0000]
Pass options to Class::MOP::Package->_new (fixes failing Moose tests)

15 years agoFix a few more style issues in MOP.xs.
Florian Ragwitz [Fri, 5 Dec 2008 20:35:57 +0000]
Fix a few more style issues in MOP.xs.

15 years agoTell ppport.h that we need newRV_noinc.
Florian Ragwitz [Fri, 5 Dec 2008 19:57:17 +0000]
Tell ppport.h that we need newRV_noinc.

15 years agoadd typemap to MANIFEST 0.71_02
Dave Rolsky [Fri, 5 Dec 2008 19:23:55 +0000]
add typemap to MANIFEST

15 years agobump version to 0.71_02 and update Changes
Dave Rolsky [Fri, 5 Dec 2008 19:21:07 +0000]
bump version to 0.71_02 and update Changes

15 years agoChangelogging.
Florian Ragwitz [Fri, 5 Dec 2008 06:39:42 +0000]
Changelogging.

15 years ago0.71_01 is already released. Move changelog entries for unreleased things to 0.72.
Florian Ragwitz [Fri, 5 Dec 2008 06:39:33 +0000]
0.71_01 is already released. Move changelog entries for unreleased things to 0.72.

15 years agoget_method_map already is xsified.
Florian Ragwitz [Fri, 5 Dec 2008 06:28:17 +0000]
get_method_map already is xsified.

15 years agoFail if hv_store fails.
Florian Ragwitz [Fri, 5 Dec 2008 06:21:02 +0000]
Fail if hv_store fails.

15 years agouse style; in MOP.xs.
Florian Ragwitz [Fri, 5 Dec 2008 06:20:54 +0000]
use style; in MOP.xs.

15 years agoMake the c get_code_info static.
Florian Ragwitz [Fri, 5 Dec 2008 06:20:45 +0000]
Make the c get_code_info static.

15 years agoA few simplifications to xs get_method_map.
Florian Ragwitz [Fri, 5 Dec 2008 06:20:37 +0000]
A few simplifications to xs get_method_map.

15 years agoDon't check if the xs version of get_method_map is called as a class method.
Florian Ragwitz [Fri, 5 Dec 2008 06:20:28 +0000]
Don't check if the xs version of get_method_map is called as a class method.

The pure perl version doesn't do that either.

15 years agoFactor out a c version of get_code_info. Make get_method_map use that and the c
Florian Ragwitz [Fri, 5 Dec 2008 06:20:19 +0000]
Factor out a c version of get_code_info. Make get_method_map use that and the c
version of get_all_package_symbols.

15 years agoMake get_all_package_symbols return a hashref in scalar context.
Florian Ragwitz [Fri, 5 Dec 2008 06:20:10 +0000]
Make get_all_package_symbols return a hashref in scalar context.

Also deprecate usage in list context with a warning.

15 years agoFactor a c function doing all the hard work out of get_all_package_symbols.
Florian Ragwitz [Fri, 5 Dec 2008 06:19:54 +0000]
Factor a c function doing all the hard work out of get_all_package_symbols.

15 years agoMake inlined_constructor return an actual method, not just a
Dave Rolsky [Thu, 4 Dec 2008 22:33:53 +0000]
Make inlined_constructor return an actual method, not just a
boolean. This will make my Moose changes much simpler.

15 years agoAdd an attribute to CMOP::Immutable, inlined_constructor, which will
Dave Rolsky [Thu, 4 Dec 2008 22:22:58 +0000]
Add an attribute to CMOP::Immutable, inlined_constructor, which will
be used by Moose::Meta::Method::Constructor.

15 years agoIf replace_constructor is true we do not check whether the constructor
Dave Rolsky [Thu, 4 Dec 2008 21:21:31 +0000]
If replace_constructor is true we do not check whether the constructor
can be inlined.

15 years agoAdd a can_be_inlined method to CMOP::Method::Constructor which we
Dave Rolsky [Thu, 4 Dec 2008 20:35:53 +0000]
Add a can_be_inlined method to CMOP::Method::Constructor which we
check in CMOP::Immutable.

We will override this in Moose to only inline the constructor if our
class wants to use the one from Moose::Object.

15 years agoadd a description to a test which did not have one
Dave Rolsky [Thu, 4 Dec 2008 20:35:04 +0000]
add a description to a test which did not have one

15 years agoFix comment which totally disagreed with code it commented on
Dave Rolsky [Thu, 4 Dec 2008 17:52:03 +0000]
Fix comment which totally disagreed with code it commented on

15 years agoMore refactorings to break down immutabilization into smaller (mostly
Dave Rolsky [Thu, 4 Dec 2008 17:24:17 +0000]
More refactorings to break down immutabilization into smaller (mostly
private) methods.

15 years agoFix a method name to actually reflect what it does
Dave Rolsky [Thu, 4 Dec 2008 17:13:16 +0000]
Fix a method name to actually reflect what it does

15 years agoSort the lists we iterate through to make finding a specific test in
Dave Rolsky [Thu, 4 Dec 2008 17:08:29 +0000]
Sort the lists we iterate through to make finding a specific test in
the output a little easier.

15 years agoThese tests reversed the got/expected order to is_deeply in most cases.
Dave Rolsky [Thu, 4 Dec 2008 17:06:43 +0000]
These tests reversed the got/expected order to is_deeply in most cases.

15 years agoMore refactorings - short circuit out of various methods if we're not
Dave Rolsky [Thu, 4 Dec 2008 16:59:27 +0000]
More refactorings - short circuit out of various methods if we're not
going to do them (inline constructor, destructor, etc)

15 years agoRefactor the make_metaclass_immutable method into a bunch of smaller
Dave Rolsky [Thu, 4 Dec 2008 16:56:57 +0000]
Refactor the make_metaclass_immutable method into a bunch of smaller
methods for each thing being made immutable.

15 years agoskip .gitignore 0.71_01
Dave Rolsky [Thu, 4 Dec 2008 04:26:14 +0000]
skip .gitignore

15 years agoAdd .gitignore.
Florian Ragwitz [Thu, 4 Dec 2008 04:06:31 +0000]
Add .gitignore.

15 years agoMake the xs code work if RVs are IVs (again!).
Florian Ragwitz [Thu, 4 Dec 2008 03:53:07 +0000]
Make the xs code work if RVs are IVs (again!).

15 years agoupdate MANIFEST
Dave Rolsky [Thu, 4 Dec 2008 03:23:38 +0000]
update MANIFEST

15 years agoSilence a gcc warning.
Florian Ragwitz [Thu, 4 Dec 2008 03:21:43 +0000]
Silence a gcc warning.

15 years agoupdate version for release and update changes
Dave Rolsky [Thu, 4 Dec 2008 03:18:06 +0000]
update version for release and update changes

15 years agos/parent/base/.
Florian Ragwitz [Thu, 4 Dec 2008 03:13:33 +0000]
s/parent/base/.

15 years agoDon't stringify the globs of stub functions.
Florian Ragwitz [Thu, 4 Dec 2008 03:12:12 +0000]
Don't stringify the globs of stub functions.

15 years agoSmall change tweaks
Dave Rolsky [Thu, 4 Dec 2008 02:50:30 +0000]
Small change tweaks

15 years agoChangelog entry for the stub method crap.
Florian Ragwitz [Thu, 4 Dec 2008 02:45:50 +0000]
Changelog entry for the stub method crap.

15 years agoTest execution of stub meta methods after the stub functions got defined.
Florian Ragwitz [Thu, 4 Dec 2008 02:42:47 +0000]
Test execution of stub meta methods after the stub functions got defined.

15 years agoAdd tests for RT#41255.
Florian Ragwitz [Thu, 4 Dec 2008 02:42:31 +0000]
Add tests for RT#41255.

15 years agoDepend on B.
Florian Ragwitz [Thu, 4 Dec 2008 02:17:40 +0000]
Depend on B.

15 years agoMake the perl version of get_all_package_symbols handle stub functions.
Florian Ragwitz [Thu, 4 Dec 2008 02:03:45 +0000]
Make the perl version of get_all_package_symbols handle stub functions.

This also fixes the pure perl version of get_method_map, as it uses
get_all_package_symbols internally.

15 years agoMake the xs version of get_method_map include stub functions.
Florian Ragwitz [Thu, 4 Dec 2008 02:03:35 +0000]
Make the xs version of get_method_map include stub functions.

15 years agoMake the xs version of get_all_package_symbols return coderefs for stub functions.
Florian Ragwitz [Thu, 4 Dec 2008 02:03:26 +0000]
Make the xs version of get_all_package_symbols return coderefs for stub functions.

15 years agoTest that stub functions are handled like every other function.
Florian Ragwitz [Thu, 4 Dec 2008 02:03:18 +0000]
Test that stub functions are handled like every other function.

15 years agoProperly initialize values that'll be checked in boolean context later with NULL.
Florian Ragwitz [Thu, 4 Dec 2008 02:03:09 +0000]
Properly initialize values that'll be checked in boolean context later with NULL.

15 years agoRemove trailing whitespace.
Florian Ragwitz [Thu, 4 Dec 2008 02:02:59 +0000]
Remove trailing whitespace.

15 years agoDocument XS get_method_map
Dave Rolsky [Wed, 3 Dec 2008 04:11:16 +0000]
Document XS get_method_map

15 years agoFix spacing
Dave Rolsky [Wed, 3 Dec 2008 04:01:25 +0000]
Fix spacing

15 years agoRestore the doubled parens, cause they shut up gcc -Wall - add a
Dave Rolsky [Wed, 3 Dec 2008 04:01:06 +0000]
Restore the doubled parens, cause they shut up gcc -Wall - add a
comment about this.

15 years agoRedo get_method_map with PPCODE (and fix indentation)
Dave Rolsky [Wed, 3 Dec 2008 03:58:58 +0000]
Redo get_method_map with PPCODE (and fix indentation)

15 years agoA bunch of style tweaks to try to get things more consistent. Also
Dave Rolsky [Wed, 3 Dec 2008 03:33:13 +0000]
A bunch of style tweaks to try to get things more consistent. Also
removed a bunch of do-nothing doubled parens and made them single
parens.

15 years agoThis is a tweaked version of Goro Fuji's XS implementation of
Dave Rolsky [Wed, 3 Dec 2008 03:27:51 +0000]
This is a tweaked version of Goro Fuji's XS implementation of
get_method_map. Tweaks were done for style, and some implementation
issues based on comments from rafl.

It seems to be about 3x faster when rebuilding the map, though if the
map doesn't need rebuilding, the speed difference is trivial.

15 years agoMention my perf tweaks in Changes
Dave Rolsky [Wed, 3 Dec 2008 03:14:14 +0000]
Mention my perf tweaks in Changes

15 years agoWhen we memoize methods, get their results lazily to remove some compile-time cost
Shawn M Moore [Wed, 3 Dec 2008 02:59:11 +0000]
When we memoize methods, get their results lazily to remove some compile-time cost

15 years agoAvoid calling $self->metaclass->meta again and again
Shawn M Moore [Wed, 3 Dec 2008 02:56:45 +0000]
Avoid calling $self->metaclass->meta again and again

15 years ago->wrap is documented as a constructor, so it should expect a class name as the first...
Dave Rolsky [Wed, 3 Dec 2008 00:23:30 +0000]
->wrap is documented as a constructor, so it should expect a class name as the first argument, not an object.

15 years agoAvoid calling get_method_map when possible. Instead, we check
Dave Rolsky [Tue, 2 Dec 2008 23:28:18 +0000]
Avoid calling get_method_map when possible. Instead, we check
$self->{methods} directly in several places.

15 years agoMade creating the immutable class lazy
Dave Rolsky [Tue, 2 Dec 2008 23:07:01 +0000]
Made creating the immutable class lazy

15 years agoGet class name into a local var earlier
Dave Rolsky [Tue, 2 Dec 2008 23:01:50 +0000]
Get class name into a local var earlier

15 years agoDoc using the new method->execute API
Shawn M Moore [Sat, 29 Nov 2008 01:37:57 +0000]
Doc using the new method->execute API

15 years agoClass::MOP::Method->execute
Shawn M Moore [Sat, 29 Nov 2008 01:28:48 +0000]
Class::MOP::Method->execute

15 years agoAdd release date 0.71
Dave Rolsky [Wed, 26 Nov 2008 19:37:34 +0000]
Add release date

15 years agobump _all_ the versions to 0.71
Dave Rolsky [Wed, 26 Nov 2008 18:16:54 +0000]
bump _all_ the versions to 0.71

15 years agoBump version number as Moose needs trunk MOP (r6678)
Tomas Doran [Wed, 26 Nov 2008 17:35:40 +0000]
Bump version number as Moose needs trunk MOP (r6678)

15 years agoUse the same _is_valid_class_name check in is_class_loaded
Shawn M Moore [Tue, 25 Nov 2008 07:36:15 +0000]
Use the same _is_valid_class_name check in is_class_loaded

15 years agoDocument the small refactor I did
Shawn M Moore [Tue, 25 Nov 2008 06:28:08 +0000]
Document the small refactor I did

15 years agoTypo fix
Shawn M Moore [Tue, 25 Nov 2008 05:48:17 +0000]
Typo fix

15 years agoMove the actual module/package creation from Class::MOP::Class to Class::MOP::Module
Shawn M Moore [Tue, 25 Nov 2008 05:14:15 +0000]
Move the actual module/package creation from Class::MOP::Class to Class::MOP::Module

15 years agoDoh, I'm retarded. 0.70_01
Dave Rolsky [Wed, 19 Nov 2008 14:49:43 +0000]
Doh, I'm retarded.

I already release 0.70, and then went and released 0.69_01.

Re-releasing with proper changes as 0.70_01 to get some testing

15 years agoupdate Changes and make version 0.69_01 0.69_01
Dave Rolsky [Tue, 18 Nov 2008 15:58:04 +0000]
update Changes and make version 0.69_01

15 years agoDon't declare return values for PPCODE.
Florian Ragwitz [Sat, 15 Nov 2008 15:00:44 +0000]
Don't declare return values for PPCODE.

This silences some more compiler warnings.

15 years agoSilence some compiler warnings.
Florian Ragwitz [Sat, 15 Nov 2008 15:00:35 +0000]
Silence some compiler warnings.

15 years agoDon't try to get a CV from globs that are references, but not SvROK.
Florian Ragwitz [Sat, 15 Nov 2008 09:03:22 +0000]
Don't try to get a CV from globs that are references, but not SvROK.

This might happen on newer perls where SVt_RV has been merged into SVt_IV.
Fixes RT#39149.

15 years agoupdate manifest 0.70
Dave Rolsky [Fri, 14 Nov 2008 22:21:21 +0000]
update manifest

15 years agos/bus error/segfault/
Dave Rolsky [Fri, 14 Nov 2008 22:11:13 +0000]
s/bus error/segfault/

15 years agobump version # and update changes
Dave Rolsky [Fri, 14 Nov 2008 21:35:58 +0000]
bump version # and update changes

15 years agogot rid of all the use_ok junk except for 000_load.t
Dave Rolsky [Fri, 14 Nov 2008 21:35:18 +0000]
got rid of all the use_ok junk except for 000_load.t

15 years agonone of this use_ok nonsense
Dave Rolsky [Fri, 14 Nov 2008 21:14:27 +0000]
none of this use_ok nonsense

15 years agoDon't mortalize the CVs behind inlined constants in the xs version of get_all_package...
Florian Ragwitz [Fri, 14 Nov 2008 21:04:53 +0000]
Don't mortalize the CVs behind inlined constants in the xs version of get_all_package_symbols.

15 years agoAdd a failing testcase for get_all_package_symbols and inlined constants.
Florian Ragwitz [Fri, 14 Nov 2008 21:04:42 +0000]
Add a failing testcase for get_all_package_symbols and inlined constants.

15 years agoDepend on Task::Weaken so we know we have an XS Scalar::Util
Dave Rolsky [Fri, 14 Nov 2008 20:03:33 +0000]
Depend on Task::Weaken so we know we have an XS Scalar::Util

15 years agobump version and update changes for release 0.69
Dave Rolsky [Fri, 7 Nov 2008 20:27:26 +0000]
bump version and update changes for release

15 years agoClass::MOP::Class->add_method does not accept any params besides
Dave Rolsky [Fri, 7 Nov 2008 20:03:31 +0000]
Class::MOP::Class->add_method does not accept any params besides
method name and the method itself.

15 years agoAdded introspection methods for method modifiers, along with tests.
Dave Rolsky [Fri, 7 Nov 2008 19:59:57 +0000]
Added introspection methods for method modifiers, along with tests.

15 years agoTidy this bizarrely indented code before adding more tests.
Dave Rolsky [Fri, 7 Nov 2008 19:42:51 +0000]
Tidy this bizarrely indented code before adding more tests.

15 years agoRemove use_ok tests
Dave Rolsky [Fri, 7 Nov 2008 19:42:20 +0000]
Remove use_ok tests

15 years agoFix some bizarro code left behind by a much earlier change.
Dave Rolsky [Tue, 4 Nov 2008 17:30:08 +0000]
Fix some bizarro code left behind by a much earlier change.

15 years agoOops, wrong date
Dave Rolsky [Fri, 24 Oct 2008 21:56:43 +0000]
Oops, wrong date

15 years agoAdd release date. 0.68
Dave Rolsky [Fri, 24 Oct 2008 15:36:54 +0000]
Add release date.

15 years agoBump all versions to 0.68
Dave Rolsky [Thu, 23 Oct 2008 16:30:15 +0000]
Bump all versions to 0.68

15 years agoOops, accidenttaly bumped version in a change log entry.
Dave Rolsky [Thu, 23 Oct 2008 16:29:49 +0000]
Oops, accidenttaly bumped version in a change log entry.

15 years agoI'm about to do a Moose change which requires trunk here, so bump the version so...
Tomas Doran [Wed, 22 Oct 2008 19:54:01 +0000]
I'm about to do a Moose change which requires trunk here, so bump the version so I can bump the dependency in Moose's Makefile.PL

15 years agoChange load_first_existing_class to return the name of the loaded class, rather than...
Tomas Doran [Wed, 22 Oct 2008 14:51:14 +0000]
Change load_first_existing_class to return the name of the loaded class, rather than it's metaclass instance.

15 years agoFix test description and some tidying
Dave Rolsky [Wed, 22 Oct 2008 02:55:12 +0000]
Fix test description and some tidying

15 years agoFix error message. Loads of tests in the Moose test suite rely on the extra space
Tomas Doran [Tue, 21 Oct 2008 22:27:18 +0000]
Fix error message. Loads of tests in the Moose test suite rely on the extra space