Skip to content

Commit

Permalink
POST: Add copyright
Browse files Browse the repository at this point in the history
This makes t/codingstd/copyright.t happy.
  • Loading branch information
Benabik committed Jun 3, 2011
1 parent 406d844 commit 6515858
Show file tree
Hide file tree
Showing 13 changed files with 17 additions and 0 deletions.
1 change: 1 addition & 0 deletions compilers/pct/src/POST/Call.pm
Expand Up @@ -24,5 +24,6 @@ Type of call. One of C<call>, C<tailcall>, C<return>, C<yield>, C<results>.
multi method calltype($param) { self.attr('calltype', $param, 1); }
multi method calltype() { self.attr('calltype', undef, 0); }

# Copyright (C) 2011, Parrot Foundation.

# vim: expandtab shiftwidth=4 ft=perl6
1 change: 1 addition & 0 deletions compilers/pct/src/POST/Compiler.pm
Expand Up @@ -999,5 +999,6 @@ INIT {
#pir::load_bytecode('nqp-setting.pbc');
}

# Copyright (C) 2011, Parrot Foundation.

# vim: expandtab shiftwidth=4 ft=perl6
2 changes: 2 additions & 0 deletions compilers/pct/src/POST/Constant.pm
Expand Up @@ -11,4 +11,6 @@ multi method value() { self.attr('value', undef, 0); }

method declared() { 1 };

# Copyright (C) 2011, Parrot Foundation.

# vim: expandtab shiftwidth=4 ft=perl6
1 change: 1 addition & 0 deletions compilers/pct/src/POST/File.pm
Expand Up @@ -21,5 +21,6 @@ method sub($name, $value?) {
%subs{$name};
}

# Copyright (C) 2011, Parrot Foundation.

# vim: expandtab shiftwidth=4 ft=perl6
1 change: 1 addition & 0 deletions compilers/pct/src/POST/Key.pm
Expand Up @@ -115,5 +115,6 @@ method to_pmc(%context) {
@res;
}
# Copyright (C) 2011, Parrot Foundation.
# vim: expandtab shiftwidth=4 ft=perl6
2 changes: 2 additions & 0 deletions compilers/pct/src/POST/Label.pm
Expand Up @@ -24,4 +24,6 @@ method result($value?) {
$value;
}

# Copyright (C) 2011, Parrot Foundation.

# vim: expandtab shiftwidth=4 ft=perl6
1 change: 1 addition & 0 deletions compilers/pct/src/POST/Op.pm
Expand Up @@ -13,5 +13,6 @@ multi method pirop() { self.attr('pirop', undef, 0); }
multi method inline($param) { self.attr('inline', $param, 1); }
multi method inline() { self.attr('inline', undef, 0); }

# Copyright (C) 2011, Parrot Foundation.

# vim: expandtab shiftwidth=4 ft=perl6
1 change: 1 addition & 0 deletions compilers/pct/src/POST/Ops.pm
@@ -1,2 +1,3 @@
class POST::Ops is POST::Node;

# Copyright (C) 2011, Parrot Foundation.
1 change: 1 addition & 0 deletions compilers/pct/src/POST/Register.pm
Expand Up @@ -18,5 +18,6 @@ multi method declared() { self.attr('declared', undef, 0); }
multi method regno($param) { self.attr('regno', $param, 1); }
multi method regno() { self.attr('regno', undef, 0); }

# Copyright (C) 2011, Parrot Foundation.

# vim: expandtab shiftwidth=4 ft=perl6
1 change: 1 addition & 0 deletions compilers/pct/src/POST/String.pm
Expand Up @@ -12,5 +12,6 @@ multi method charset() { self.attr('charset', undef, 0); }
multi method encoding($param) { self.attr('encoding', $param, 1); }
multi method encoding() { self.attr('encoding', undef, 0); }

# Copyright (C) 2011, Parrot Foundation.

# vim: expandtab shiftwidth=4 ft=perl6
1 change: 1 addition & 0 deletions compilers/pct/src/POST/Sub.pm
Expand Up @@ -231,5 +231,6 @@ INIT {
pir::load_bytecode('nqp-setting.pbc');
}

# Copyright (C) 2011, Parrot Foundation.

# vim: expandtab shiftwidth=4 ft=perl6
2 changes: 2 additions & 0 deletions compilers/pct/src/POST/Value.pm
Expand Up @@ -32,4 +32,6 @@ multi method modifier() { self.attr('modifier', undef, 0); }

multi method declared() { 0 };

# Copyright (C) 2011, Parrot Foundation.

# vim: expandtab shiftwidth=4 ft=perl6
2 changes: 2 additions & 0 deletions compilers/pct/src/POST/VanillaAllocator.pm
Expand Up @@ -33,4 +33,6 @@ method process(POST::Sub $sub) {
@n_regs_used;
}

# Copyright (C) 2011, Parrot Foundation.

# vim: expandtab shiftwidth=4 ft=perl6

0 comments on commit 6515858

Please sign in to comment.