summaryrefslogtreecommitdiff
path: root/tests/examplefiles/grammar-test.p6
diff options
context:
space:
mode:
Diffstat (limited to 'tests/examplefiles/grammar-test.p6')
-rw-r--r--tests/examplefiles/grammar-test.p622
1 files changed, 0 insertions, 22 deletions
diff --git a/tests/examplefiles/grammar-test.p6 b/tests/examplefiles/grammar-test.p6
deleted file mode 100644
index 28107f3e..00000000
--- a/tests/examplefiles/grammar-test.p6
+++ /dev/null
@@ -1,22 +0,0 @@
-token pod_formatting_code {
- $<code>=<[A..Z]>
- '<' { $*POD_IN_FORMATTINGCODE := 1 }
- $<content>=[ <!before '>'> <pod_string_character> ]+
- '>' { $*POD_IN_FORMATTINGCODE := 0 }
-}
-
-token pod_string {
- <pod_string_character>+
-}
-
-token something:sym«<» {
- <!>
-}
-
-token name {
- <!>
-}
-
-token comment:sym<#> {
- '#' {} \N*
-}