diff --git a/src/Partcl/commands/array.pm b/src/Partcl/commands/array.pm index 1e4dd1c..a98a922 100644 --- a/src/Partcl/commands/array.pm +++ b/src/Partcl/commands/array.pm @@ -2,7 +2,7 @@ our sub array(*@args) { Array::dispatch_command(|@args); } -module Array; +module Array { our %Arg_limits; our %Array_funcs; @@ -199,4 +199,6 @@ my sub unset($arrayName, $array, $pattern = '*') { ''; } +} + # vim: expandtab shiftwidth=4 ft=perl6: diff --git a/src/Partcl/commands/dict.pm b/src/Partcl/commands/dict.pm index 89d70bc..a9cea25 100644 --- a/src/Partcl/commands/dict.pm +++ b/src/Partcl/commands/dict.pm @@ -2,7 +2,7 @@ our sub dict(*@args) { Dict::dispatch_command(|@args); } -module Dict; +module Dict { our %Arg_limits; our %funcs; @@ -168,4 +168,6 @@ sub with (*@args) { ''; } +} + # vim: expandtab shiftwidth=4 ft=perl6: diff --git a/src/Partcl/commands/file.pm b/src/Partcl/commands/file.pm index bc6f034..dc70bbd 100644 --- a/src/Partcl/commands/file.pm +++ b/src/Partcl/commands/file.pm @@ -2,7 +2,7 @@ our sub file(*@args) { File::dispatch_command(|@args); } -module File; +module File { our %Arg_limits; our %funcs; @@ -262,4 +262,6 @@ my sub writable(*@args) { '' } +} + # vim: expandtab shiftwidth=4 ft=perl6: diff --git a/src/Partcl/commands/info.pm b/src/Partcl/commands/info.pm index 3fa6271..b2238ad 100644 --- a/src/Partcl/commands/info.pm +++ b/src/Partcl/commands/info.pm @@ -2,7 +2,7 @@ our sub info(*@args) { Info::dispatch_command(|@args); } -module Info; +module Info { our %Arg_limits; our %Info_funcs; @@ -243,4 +243,6 @@ my sub vars($pattern = '*') { @result; } +} + # vim: expandtab shiftwidth=4 ft=perl6: diff --git a/src/Partcl/commands/namespace.pm b/src/Partcl/commands/namespace.pm index 598462c..6ffbb6e 100644 --- a/src/Partcl/commands/namespace.pm +++ b/src/Partcl/commands/namespace.pm @@ -2,7 +2,7 @@ our sub namespace(*@args) { Namespace::dispatch_command(|@args); } -module Namespace; +module Namespace { our %Arg_limits; our %funcs; @@ -277,4 +277,6 @@ my sub getNamespace(int :$depth=0) { return $ns; } +} + # vim: expandtab shiftwidth=4 ft=perl6: diff --git a/src/Partcl/commands/string.pm b/src/Partcl/commands/string.pm index bc7f51e..6fdff6c 100644 --- a/src/Partcl/commands/string.pm +++ b/src/Partcl/commands/string.pm @@ -2,7 +2,7 @@ our sub string(*@args) { String::dispatch_command(|@args); } -module String; +module String { our %Arg_limits; our %CCLASS; @@ -544,4 +544,6 @@ my sub wordstart($string, $index) { ++$index; } +} + # vim: expandtab shiftwidth=4 ft=perl6: