Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Should not compose subclasses before their parent classes (will suppo…
…rt this later probably, but for now it's a no-no). Fixes WhateverCode ~~ Callable issue.
  • Loading branch information
jnthn committed Jul 7, 2011
1 parent cc83922 commit 5c39eca
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/core/WhateverCode.pm
@@ -0,0 +1,2 @@
my class WhateverCode {
}
2 changes: 1 addition & 1 deletion src/core/stubs.pm
Expand Up @@ -5,7 +5,7 @@
# in the end.
my class Junction is Mu { }
my class Whatever is Cool { ... }
my class WhateverCode is Code { }
my class WhateverCode is Code { ... }
my class Bag is Iterable does Associative { }
my class Buf is Iterable does Positional { }
my class Set is Iterable does Associative { }
Expand Down
1 change: 1 addition & 0 deletions tools/build/Makefile.in
Expand Up @@ -128,6 +128,7 @@ CORE_SOURCES = \
src/core/Mu.pm \
src/core/Any.pm \
src/core/Code.pm \
src/core/WhateverCode.pm \
src/core/Attribute.pm \
src/core/Cool.pm \
src/core/Whatever.pm \
Expand Down

0 comments on commit 5c39eca

Please sign in to comment.