[svn:parrot] r44336 - trunk/t/oo
mikehh at svn.parrot.org
mikehh at svn.parrot.org
Tue Feb 23 00:28:45 UTC 2010
Author: mikehh
Date: Tue Feb 23 00:28:44 2010
New Revision: 44336
URL: https://trac.parrot.org/parrot/changeset/44336
Log:
fix codetest failures - trailing whitespace
Modified:
trunk/t/oo/ops.t
trunk/t/oo/root_new.t
trunk/t/oo/subclass.t
Modified: trunk/t/oo/ops.t
==============================================================================
--- trunk/t/oo/ops.t Tue Feb 23 00:17:47 2010 (r44335)
+++ trunk/t/oo/ops.t Tue Feb 23 00:28:44 2010 (r44336)
@@ -1,5 +1,5 @@
#! parrot
-# Copyright (C) 2007, Parrot Foundation.
+# Copyright (C) 2007-2010, Parrot Foundation.
# $Id$
=head1 NAME
@@ -18,7 +18,7 @@
.sub main :main
.include 'except_types.pasm'
- .include 'test_more.pir'
+ .include 'test_more.pir'
plan(18)
@@ -91,7 +91,7 @@
.end
-.sub op_get_class_p_p
+.sub op_get_class_p_p
$P0 = new 'Hash'
$P4 = new 'String'
$P4 = 'Ape'
@@ -177,7 +177,7 @@
.namespace ["Baz"]
.sub bar :method
- .return (1)
+ .return (1)
.end
# Local Variables:
Modified: trunk/t/oo/root_new.t
==============================================================================
--- trunk/t/oo/root_new.t Tue Feb 23 00:17:47 2010 (r44335)
+++ trunk/t/oo/root_new.t Tue Feb 23 00:28:44 2010 (r44336)
@@ -1,5 +1,5 @@
#! parrot
-# Copyright (C) 2007-2009, Parrot Foundation.
+# Copyright (C) 2007-2010, Parrot Foundation.
# $Id$
=head1 NAME
@@ -33,7 +33,7 @@
#
.sub _test_instance
.param pmc obj
- .param string in_str
+ .param string in_str
# Set up local variables
.local pmc key_pmc
@@ -92,4 +92,10 @@
$P0 = root_new ['parrot';'Integer']
_test_instance($P0, 'Integer')
.end
-
+
+
+# Local Variables:
+# mode: pir
+# fill-column: 100
+# End:
+# vim: expandtab shiftwidth=4 ft=pir:
Modified: trunk/t/oo/subclass.t
==============================================================================
--- trunk/t/oo/subclass.t Tue Feb 23 00:17:47 2010 (r44335)
+++ trunk/t/oo/subclass.t Tue Feb 23 00:28:44 2010 (r44336)
@@ -1,5 +1,5 @@
#! parrot
-# Copyright (C) 2007-2008, Parrot Foundation.
+# Copyright (C) 2007-2010, Parrot Foundation.
# $Id$
=head1 NAME
@@ -55,13 +55,13 @@
parent_class = newclass "PreFoo"
foo_class = subclass parent_class, "Foo"
- $S1 = typeof foo_class
+ $S1 = typeof foo_class
is ($S1, 'Class', 'created Foo as subclass of Pre')
$I3 = isa foo_class, "Class"
ok ($I3, 'Foo isa Class')
- foo_object = new foo_class
+ foo_object = new foo_class
$S1 = typeof foo_object
is ($S1, 'Foo', 'instance is typeof Foo')
@@ -142,7 +142,7 @@
.sub instance_from_class_object_method
# instantiate from class object method
- .local pmc parent_class, baz_class, baz_object
+ .local pmc parent_class, baz_class, baz_object
parent_class = newclass "PreBaz"
baz_class = subclass "PreBaz", "Baz"
baz_object = baz_class.'new'()
@@ -160,7 +160,7 @@
.sub instance_from_string_name
# instantiate from string name
- .local pmc parent_class, qux_class, qux_object
+ .local pmc parent_class, qux_class, qux_object
parent_class = newclass "PreQux"
qux_class = subclass "PreQux", "Qux"
qux_object = new 'Qux'
@@ -239,7 +239,7 @@
.end
-.sub instance_from_key_pmc_name
+.sub instance_from_key_pmc_name
# instantiate from key PMC name
.local pmc parent_class, barbaz_class, barbaz_object
parent_class = newclass "Snork"
More information about the parrot-commits
mailing list