[svn:parrot] r38347 - trunk/examples/streams

NotFound at svn.parrot.org NotFound at svn.parrot.org
Sat Apr 25 10:26:13 UTC 2009


Author: NotFound
Date: Sat Apr 25 10:26:13 2009
New Revision: 38347
URL: https://trac.parrot.org/parrot/changeset/38347

Log:
[cage] drop 'library' from load_bytecode path in some examples/streams, see "load_bytecode 'library/...'" thread in parrot-dev list

Modified:
   trunk/examples/streams/Filter.pir
   trunk/examples/streams/Include.pir
   trunk/examples/streams/Lines.pir
   trunk/examples/streams/SubHello.pir

Modified: trunk/examples/streams/Filter.pir
==============================================================================
--- trunk/examples/streams/Filter.pir	Sat Apr 25 10:09:26 2009	(r38346)
+++ trunk/examples/streams/Filter.pir	Sat Apr 25 10:26:13 2009	(r38347)
@@ -23,8 +23,8 @@
     .local pmc stream
     .local pmc filter
 
-    load_bytecode "library/Stream/Sub.pir"
-    load_bytecode "library/Stream/Filter.pir"
+    load_bytecode "Stream/Sub.pir"
+    load_bytecode "Stream/Filter.pir"
 
     # create the counter stream
     stream = new "Stream::Sub"

Modified: trunk/examples/streams/Include.pir
==============================================================================
--- trunk/examples/streams/Include.pir	Sat Apr 25 10:09:26 2009	(r38346)
+++ trunk/examples/streams/Include.pir	Sat Apr 25 10:26:13 2009	(r38347)
@@ -17,7 +17,7 @@
 .sub _main
     .local pmc stream
 
-    load_bytecode "library/Stream/Sub.pir"
+    load_bytecode "Stream/Sub.pir"
 
     stream = new "Stream::Sub"
 

Modified: trunk/examples/streams/Lines.pir
==============================================================================
--- trunk/examples/streams/Lines.pir	Sat Apr 25 10:09:26 2009	(r38346)
+++ trunk/examples/streams/Lines.pir	Sat Apr 25 10:26:13 2009	(r38347)
@@ -18,8 +18,8 @@
     .local pmc stream
     .local pmc lines
 
-    load_bytecode "library/Stream/Sub.pir"
-    load_bytecode "library/Stream/Lines.pir"
+    load_bytecode "Stream/Sub.pir"
+    load_bytecode "Stream/Lines.pir"
 
     # create a text stream
     stream = new "Stream::Sub"

Modified: trunk/examples/streams/SubHello.pir
==============================================================================
--- trunk/examples/streams/SubHello.pir	Sat Apr 25 10:09:26 2009	(r38346)
+++ trunk/examples/streams/SubHello.pir	Sat Apr 25 10:26:13 2009	(r38347)
@@ -17,7 +17,7 @@
 .sub _main :main
     .local pmc stream
 
-    load_bytecode "library/Stream/Sub.pir"
+    load_bytecode "Stream/Sub.pir"
 
     stream = new "Stream::Sub"
 


More information about the parrot-commits mailing list