format aperture in backtrack trace
[scpubgit/DX.git] / lib / DX / Predicate / Rule.pm
CommitLineData
2bf57c95 1package DX::Predicate::Rule;
2
3use DX::Class;
4
5with 'DX::Role::Predicate';
6
cfae7810 7has arg_names => (is => 'ro', required => 1, isa => ArrayRef[Str]);
2bf57c95 8
cfae7810 9has proposition_sequence => (
10 is => 'ro', required => 1, isa => PropositionSequence
11);
2bf57c95 12
131;