Author: particle
Date: Wed Dec 28 10:28:52 2005
New Revision: 10737

Added:
   trunk/languages/parakeet/parakeet.pir
      - copied unchanged from r10724, trunk/languages/parakeet/parakeet.imc
   trunk/languages/parrot_compiler/parrot_compiler.pir
      - copied unchanged from r10724, 
trunk/languages/parrot_compiler/parrot_compiler.imc
Removed:
   trunk/languages/parakeet/parakeet.imc
   trunk/languages/parrot_compiler/parrot_compiler.imc
Modified:
   trunk/MANIFEST
   trunk/config/gen/makefiles/parrot_compiler.in
   trunk/languages/parakeet/README.txt
   trunk/languages/parrot_compiler/t/basic/hello.t
Log:
#37520: [TODO] rename library files from .imc to .pir
~converted parakeet and parrot_compiler languages

Modified: trunk/MANIFEST
==============================================================================
--- trunk/MANIFEST      (original)
+++ trunk/MANIFEST      Wed Dec 28 10:28:52 2005
@@ -1021,12 +1021,12 @@ languages/ook/t/basic.t                 
 languages/ook/t/harness                           [ook]
 languages/ook/test.ook                            [ook]
 languages/parakeet/README.txt                     [parakeet]
-languages/parakeet/parakeet.imc                   [parakeet]
+languages/parakeet/parakeet.pir                   [parakeet]
 languages/parakeet/test.pk                        [parakeet]
 languages/parrot_compiler/README                  [parrot_compiler]
 languages/parrot_compiler/lib/Parrot/Test/ParrotCompiler.pm      
[parrot_compiler]
 languages/parrot_compiler/parrot.pasm             [parrot_compiler]
-languages/parrot_compiler/parrot_compiler.imc     [parrot_compiler]
+languages/parrot_compiler/parrot_compiler.pir     [parrot_compiler]
 languages/parrot_compiler/sample.pasm             [parrot_compiler]
 languages/parrot_compiler/t/basic/hello.t         [parrot_compiler]
 languages/parrot_compiler/t/harness               [parrot_compiler]

Modified: trunk/config/gen/makefiles/parrot_compiler.in
==============================================================================
--- trunk/config/gen/makefiles/parrot_compiler.in       (original)
+++ trunk/config/gen/makefiles/parrot_compiler.in       Wed Dec 28 10:28:52 2005
@@ -39,9 +39,9 @@ realclean : clean
 parrot.pbc : parrot.pasm
        $(PARROT) -o parrot.pbc parrot.pasm
 
-parrot_compiler.pbc : parrot_compiler.imc
-       $(PARROT) -o parrot_compiler.pbc parrot_compiler.imc
+parrot_compiler.pbc : parrot_compiler.pir
+       $(PARROT) -o parrot_compiler.pbc parrot_compiler.pir
 
-parrot_compiler.pasm : parrot_compiler.imc
-       $(PARROT) -o parrot_compiler.pasm parrot_compiler.imc
+parrot_compiler.pasm : parrot_compiler.pir
+       $(PARROT) -o parrot_compiler.pasm parrot_compiler.pir
 

Modified: trunk/languages/parakeet/README.txt
==============================================================================
--- trunk/languages/parakeet/README.txt (original)
+++ trunk/languages/parakeet/README.txt Wed Dec 28 10:28:52 2005
@@ -16,9 +16,9 @@ Parakeet
 
   Parakeet can be used and learned through an interactive interpreter.
   To run the interpretor, point your Parrot interpreter to the
-  parakeet.imc file, like:
+  parakeet.pir file, like:
 
-    ./parrot language/parakeet/parakeet.imc
+    ./parrot language/parakeet/parakeet.pir
     0>
 
   The '0>' is the interactive prompt.  The number represents the
@@ -140,7 +140,7 @@ Words
     0> 
 
   Since the core words are still pretty flexible right now, please see
-  the source file parakeet.imc for a list of all the current words.
+  the source file parakeet.pir for a list of all the current words.
 
 Control
 

Modified: trunk/languages/parrot_compiler/t/basic/hello.t
==============================================================================
--- trunk/languages/parrot_compiler/t/basic/hello.t     (original)
+++ trunk/languages/parrot_compiler/t/basic/hello.t     Wed Dec 28 10:28:52 2005
@@ -82,7 +82,7 @@ $ENV{TEST_PROG_ARGS} = 'parrot_compiler.
 language_output_is( 'ParrotCompiler', $code{PIR}, $out{PIR},
                     $ENV{TEST_PROG_ARGS} );
 
-$ENV{TEST_PROG_ARGS} = 'parrot_compiler.imc --language=PIR';
+$ENV{TEST_PROG_ARGS} = 'parrot_compiler.pir --language=PIR';
 language_output_is( 'ParrotCompiler', $code{PIR}, $out{PIR},
                     $ENV{TEST_PROG_ARGS} );
 
@@ -99,7 +99,7 @@ TODO:
 $ENV{TEST_PROG_ARGS} = 'parrot_compiler.pbc --language=PAST';
 language_output_is( 'ParrotCompiler', $code{PAST}, $out{PAST}, 
$ENV{TEST_PROG_ARGS} );
 
-$ENV{TEST_PROG_ARGS} = 'parrot_compiler.imc --language=PAST';
+$ENV{TEST_PROG_ARGS} = 'parrot_compiler.pir --language=PAST';
 language_output_is( 'ParrotCompiler', $code{PAST}, $out{PAST},
                     $ENV{TEST_PROG_ARGS} );
 

Reply via email to