summaryrefslogtreecommitdiff
path: root/src/packrat-lexers.adb
diff options
context:
space:
mode:
Diffstat (limited to 'src/packrat-lexers.adb')
-rw-r--r--src/packrat-lexers.adb33
1 files changed, 0 insertions, 33 deletions
diff --git a/src/packrat-lexers.adb b/src/packrat-lexers.adb
index bf5d109..cd81635 100644
--- a/src/packrat-lexers.adb
+++ b/src/packrat-lexers.adb
@@ -687,39 +687,6 @@ package body Packrat.Lexers is
end Take_Until;
-
-
-
- function Line_End
- (Input : in Traits.Element_Array;
- Start : in Positive)
- return Combinator_Result is
- begin
- if Start > Input'Last then
- return Empty_Fail;
- elsif Input (Start) = EOL_Item then
- return (Start, Success);
- else
- return Empty_Fail;
- end if;
- end Line_End;
-
-
- function Input_End
- (Input : in Traits.Element_Array;
- Start : in Positive)
- return Combinator_Result is
- begin
- if Start > Input'Last then
- return Empty_Fail;
- elsif Input (Start) = EOF_Item then
- return (Start, Success);
- else
- return Empty_Fail;
- end if;
- end Input_End;
-
-
end Packrat.Lexers;