[svn:parrot] r46961 - trunk/compilers/opsc/src/Ops/Compiler

bacek at svn.parrot.org bacek at svn.parrot.org
Mon May 24 12:16:09 UTC 2010


Author: bacek
Date: Mon May 24 12:16:09 2010
New Revision: 46961
URL: https://trac.parrot.org/parrot/changeset/46961

Log:
Catch significant whitespaces in opsc. bacek-- for being lazy to proper
test previous commit.

Modified:
   trunk/compilers/opsc/src/Ops/Compiler/Grammar.pm

Modified: trunk/compilers/opsc/src/Ops/Compiler/Grammar.pm
==============================================================================
--- trunk/compilers/opsc/src/Ops/Compiler/Grammar.pm	Mon May 24 12:06:25 2010	(r46960)
+++ trunk/compilers/opsc/src/Ops/Compiler/Grammar.pm	Mon May 24 12:16:09 2010	(r46961)
@@ -91,8 +91,8 @@
 #or goto NEXT() ) in the midst of the words.
 token body_word {
     [
-    || <.ws> <macro_param> <.ws>
-    || <.ws> <op_macro> <.ws>
+    || <macro_param>
+    || <op_macro>
     || <word>
     ]
 }


More information about the parrot-commits mailing list