summaryrefslogtreecommitdiff
path: root/src/packrat-text.ads
diff options
context:
space:
mode:
Diffstat (limited to 'src/packrat-text.ads')
-rw-r--r--src/packrat-text.ads37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/packrat-text.ads b/src/packrat-text.ads
deleted file mode 100644
index c3a5c51..0000000
--- a/src/packrat-text.ads
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-with
-
- Packrat.Standard;
-
-
-generic
-
- type Lexer_Labels is (<>);
- type Parser_Labels is (<>);
-
-package Packrat.Text is
-
-
- package Standard is new Packrat.Standard
- (Lexer_Labels => Lexer_Labels,
- Parser_Labels => Parser_Labels,
- Element_Type => Character,
- Element_Array => String);
-
- package Wide is new Packrat.Standard
- (Lexer_Labels => Lexer_Labels,
- Parser_Labels => Parser_Labels,
- Element_Type => Wide_Character,
- Element_Array => Wide_String);
-
- package Wide_Wide is new Packrat.Standard
- (Lexer_Labels => Lexer_Labels,
- Parser_Labels => Parser_Labels,
- Element_Type => Wide_Wide_Character,
- Element_Array => Wide_Wide_String);
-
-
-end Packrat.Text;
-
-