We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9dbb09a + fdf168f commit 004f84fCopy full SHA for 004f84f
macros/contexts/contextFraction.pl
@@ -646,7 +646,15 @@ sub _check {
646
# operator we didn't otherwise subclass.
647
#
648
package context::Fraction::BOP::Space;
649
-our @ISA = ('context::Fraction::BOP::space');
+our @ISA = ('context::Fraction::Class', 'Parser::BOP');
650
+
651
+sub _check {
652
+ my $self = shift;
653
+ my $context = $self->context;
654
+ $self->{bop} = $self->{def}{string};
655
+ $self->{def} = $context->{operators}{ $self->{bop} };
656
+ return $self->mutate->_check;
657
+}
658
659
#################################################################################################
660
0 commit comments