Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Avoid leaking NQPMu from archetypes.
  • Loading branch information
jnthn committed Feb 23, 2015
1 parent 5ec0c6e commit 0ec17f3
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/Perl6/Metamodel/Archetypes.nqp
Expand Up @@ -48,14 +48,14 @@ class Perl6::Metamodel::Archetypes {
# Are we allowed to augment the type?
has $!augmentable;

method nominal() { $!nominal }
method nominalizable() { $!nominalizable }
method inheritable() { $!inheritable }
method inheritalizable() { $!inheritalizable }
method composable() { $!composable }
method composalizable() { $!composalizable }
method generic() { $!generic }
method parametric() { $!parametric }
method coercive() { $!coercive }
method augmentable() { $!augmentable }
method nominal() { $!nominal // 0 }
method nominalizable() { $!nominalizable // 0 }
method inheritable() { $!inheritable // 0 }
method inheritalizable() { $!inheritalizable // 0 }
method composable() { $!composable // 0 }
method composalizable() { $!composalizable // 0 }
method generic() { $!generic // 0 }
method parametric() { $!parametric // 0 }
method coercive() { $!coercive // 0 }
method augmentable() { $!augmentable // 0 }
}

0 comments on commit 0ec17f3

Please sign in to comment.