summaryrefslogtreecommitdiff
path: root/src/packrat-lexer.ads
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2019-01-14 23:31:07 +1100
committerJed Barber <jjbarber@y7mail.com>2019-01-14 23:31:07 +1100
commitb60f27407c20344f5d48fa7d6f3efe5f9d4e87fb (patch)
tree228f75e20799813eed1f17adf21bafee32283697 /src/packrat-lexer.ads
parent5a01394fadfe73cc9bfdc3576a58ac3cd4dcb1f2 (diff)
Tests added for Stamp and Ignore procedures in Packrat.Lexer
Diffstat (limited to 'src/packrat-lexer.ads')
-rw-r--r--src/packrat-lexer.ads19
1 files changed, 14 insertions, 5 deletions
diff --git a/src/packrat-lexer.ads b/src/packrat-lexer.ads
index fe5ff9d..1da9662 100644
--- a/src/packrat-lexer.ads
+++ b/src/packrat-lexer.ads
@@ -40,7 +40,8 @@ package Packrat.Lexer is
type Lexer_Component is access procedure
- (Context : in out Lexer_Context);
+ (Input : in Element_Array;
+ Context : in out Lexer_Context);
type Component_Array is array (Positive range <>) of Lexer_Component;
@@ -49,14 +50,22 @@ package Packrat.Lexer is
generic
Label : in Label_Enum;
- Combo : in Combinator;
+ with function Combo
+ (Input : in Element_Array;
+ Start : in Positive)
+ return Combinator_Result;
procedure Stamp
- (Context : in out Lexer_Context);
+ (Input : in Element_Array;
+ Context : in out Lexer_Context);
generic
- Combo : in Combinator;
+ with function Combo
+ (Input : in Element_Array;
+ Start : in Positive)
+ return Combinator_Result;
procedure Ignore
- (Context : in out Lexer_Context);
+ (Input : in Element_Array;
+ Context : in out Lexer_Context);