aboutsummaryrefslogtreecommitdiff
path: root/lib/Config
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2017-04-27 15:01:23 +0200
committerPatrick Spek <p.spek@tyil.nl>2017-04-27 15:01:23 +0200
commitc40e6ae736f82f133d89b9b60cd6ff23c7690c6a (patch)
tree4ee13ad2ee3e2c2c3a6b86621918ae09ab3c2ac2 /lib/Config
parentd295c55f6e161b6a6227113d2bfe0ca216729a10 (diff)
Update method sigs, type checking and tests
Diffstat (limited to 'lib/Config')
-rw-r--r--lib/Config/Exception/UnknownTypeException.pm613
-rw-r--r--lib/Config/Type.pm68
2 files changed, 0 insertions, 21 deletions
diff --git a/lib/Config/Exception/UnknownTypeException.pm6 b/lib/Config/Exception/UnknownTypeException.pm6
deleted file mode 100644
index 095572b..0000000
--- a/lib/Config/Exception/UnknownTypeException.pm6
+++ /dev/null
@@ -1,13 +0,0 @@
-#! /usr/bin/env false
-
-use v6.c;
-
-class Config::Exception::UnknownTypeException is Exception
-{
- has Str $.file;
-
- method message()
- {
- "Could not deduce loader type for $!file."
- }
-}
diff --git a/lib/Config/Type.pm6 b/lib/Config/Type.pm6
deleted file mode 100644
index f348985..0000000
--- a/lib/Config/Type.pm6
+++ /dev/null
@@ -1,8 +0,0 @@
-#! /usr/bin/env false
-
-use v6.c;
-
-enum Config::Type <
- unknown
- yaml
->;