Skip to content

Commit

Permalink
Add some # vim: ft=perl6 expandtab sw=4
Browse files Browse the repository at this point in the history
  • Loading branch information
lizmat committed Oct 6, 2017
1 parent c4b96e4 commit 8ff76b5
Show file tree
Hide file tree
Showing 27 changed files with 54 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/core/Awaitable.pm
Expand Up @@ -46,3 +46,5 @@ my role Awaitable::Handle {

method subscribe-awaiter(&subscriber) { ... }
}

# vim: ft=perl6 expandtab sw=4
2 changes: 2 additions & 0 deletions src/core/Awaiter.pm
Expand Up @@ -111,3 +111,5 @@ my class Awaiter::Blocking does Awaiter {
}

PROCESS::<$AWAITER> := Awaiter::Blocking;

# vim: ft=perl6 expandtab sw=4
2 changes: 2 additions & 0 deletions src/core/Collation.pm
Expand Up @@ -48,3 +48,5 @@ class Collation {
Rakudo::Internals.REGISTER-DYNAMIC: '$*COLLATION', {
PROCESS::<$COLLATION> := Collation.new;
}

# vim: ft=perl6 expandtab sw=4
2 changes: 2 additions & 0 deletions src/core/Cursor.pm
@@ -1 +1,3 @@
my constant Cursor = Match;

# vim: ft=perl6 expandtab sw=4
2 changes: 2 additions & 0 deletions src/core/Encoding.pm
Expand Up @@ -4,3 +4,5 @@ role Encoding {
method encoder(*%options --> Encoding::Encoder) { ... }
method decoder(*%options --> Encoding::Decoder) { ... }
}

# vim: ft=perl6 expandtab sw=4
2 changes: 2 additions & 0 deletions src/core/Encoding/Decoder.pm
Expand Up @@ -9,3 +9,5 @@ role Encoding::Decoder {
method bytes-available(--> Int:D) { ... }
method consume-exactly-bytes(int $bytes --> Blob) { ... }
}

# vim: ft=perl6 expandtab sw=4
2 changes: 2 additions & 0 deletions src/core/Encoding/Decoder/Builtin.pm
Expand Up @@ -78,3 +78,5 @@ augment class Rakudo::Internals {
}
}
}

# vim: ft=perl6 expandtab sw=4
2 changes: 2 additions & 0 deletions src/core/Encoding/Encoder.pm
@@ -1,3 +1,5 @@
role Encoding::Encoder {
method encode-chars(Str:D --> Blob:D) { ... }
}

# vim: ft=perl6 expandtab sw=4
2 changes: 2 additions & 0 deletions src/core/Encoding/Encoder/Builtin.pm
Expand Up @@ -42,3 +42,5 @@ my class Encoding::Encoder::Builtin::Replacement does Encoding::Encoder {
#?endif
}
}

# vim: ft=perl6 expandtab sw=4
2 changes: 2 additions & 0 deletions src/core/Encoding/Encoder/TranslateNewlineWrapper.pm
Expand Up @@ -14,3 +14,5 @@ my class Encoding::Encoder::TranslateNewlineWrapper does Encoding::Encoder {
$!delegate.encode-chars(Rakudo::Internals.TRANSPOSE($str, "\n", "\r\n"))
}
}

# vim: ft=perl6 expandtab sw=4
2 changes: 2 additions & 0 deletions src/core/Encoding/Registry.pm
Expand Up @@ -39,3 +39,5 @@ my class Encoding::Registry {
}
}
}

# vim: ft=perl6 expandtab sw=4
2 changes: 2 additions & 0 deletions src/core/IO/Notification.pm
Expand Up @@ -34,3 +34,5 @@ my class IO::Notification {
$s.Supply
}
}

# vim: ft=perl6 expandtab sw=4
2 changes: 2 additions & 0 deletions src/core/IO/Socket/Async.pm
Expand Up @@ -334,3 +334,5 @@ my class IO::Socket::Async {
}
#?endif
}

# vim: ft=perl6 expandtab sw=4
2 changes: 2 additions & 0 deletions src/core/IO/Special.pm
Expand Up @@ -25,3 +25,5 @@ class IO::Special does IO {
method changed( IO::Special:D: --> Instant) { Instant }
method mode(IO::Special:D: --> Nil) { }
}

# vim: ft=perl6 expandtab sw=4
2 changes: 2 additions & 0 deletions src/core/IterationBuffer.pm
Expand Up @@ -45,3 +45,5 @@ my class IterationBuffer {
nqp::p6bindattrinvres(nqp::create(List),List,'$!reified',self).perl
}
}

# vim: ft=perl6 expandtab sw=4
2 changes: 2 additions & 0 deletions src/core/JSON/Pretty.pm
Expand Up @@ -7,3 +7,5 @@ sub from-json($text) {
DEPRECATED('JSON::Fast, JSON::Tiny or JSON::Pretty from https://modules.perl6.org/');
Rakudo::Internals::JSON.from-json($text);
}

# vim: ft=perl6 expandtab sw=4
2 changes: 2 additions & 0 deletions src/core/JVM/IOAsyncFile.pm
Expand Up @@ -74,3 +74,5 @@ my class IO::Async::File {
$c
}
}

# vim: ft=perl6 expandtab sw=4
2 changes: 2 additions & 0 deletions src/core/JVM/KeyReducer.pm
Expand Up @@ -86,3 +86,5 @@ my class KeyReducer {
$!exception ?? $!exception.throw !! %!result
}
}

# vim: ft=perl6 expandtab sw=4
2 changes: 2 additions & 0 deletions src/core/Lock/Async.pm
Expand Up @@ -203,3 +203,5 @@ my class Lock::Async {
}
}
}

# vim: ft=perl6 expandtab sw=4
2 changes: 2 additions & 0 deletions src/core/Metamodel/Primitives.pm
Expand Up @@ -64,3 +64,5 @@ my class Metamodel::Primitives {
nqp::p6bool(nqp::istype(obj, type))
}
}

# vim: ft=perl6 expandtab sw=4
2 changes: 2 additions & 0 deletions src/core/Proc/Async.pm
Expand Up @@ -420,3 +420,5 @@ my class Proc::Async {
nqp::killprocasync($!process_handle, $*KERNEL.signal: signal)
}
}

# vim: ft=perl6 expandtab sw=4
2 changes: 2 additions & 0 deletions src/core/REPL.pm
Expand Up @@ -412,3 +412,5 @@ do {
}
}
}

# vim: ft=perl6 expandtab sw=4
2 changes: 2 additions & 0 deletions src/core/Rakudo/Internals/JSON.pm
Expand Up @@ -133,3 +133,5 @@ my class Rakudo::Internals::JSON {
}
method to-json(|c) { to-json(|c) }
}

# vim: ft=perl6 expandtab sw=4
2 changes: 2 additions & 0 deletions src/core/Slang.pm
Expand Up @@ -12,3 +12,5 @@ class Slang {
$!grammar.parse(:$!actions, |c);
}
}

# vim: ft=perl6 expandtab sw=4
2 changes: 2 additions & 0 deletions src/core/Uni.pm
Expand Up @@ -123,3 +123,5 @@ my class NFKC is Uni {
die "Cannot create an NFKC directly"; # XXX typed, better message
}
}

# vim: ft=perl6 expandtab sw=4
2 changes: 2 additions & 0 deletions src/core/allomorphs.pm
Expand Up @@ -506,3 +506,5 @@ multi sub val(Str:D $MAYBEVAL, :$val-or-fail) {

parse_win $result;
}

# vim: ft=perl6 expandtab sw=4
2 changes: 2 additions & 0 deletions src/core/atomicops.pm
Expand Up @@ -205,3 +205,5 @@ multi sub cas(atomicint $target is rw, &code) {
}
}
#?endif

# vim: ft=perl6 expandtab sw=4

0 comments on commit 8ff76b5

Please sign in to comment.