This is the mail archive of the frysk-cvs@sources.redhat.com mailing list for the frysk project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[SCM] master: Nits in parser code


The branch, master has been updated
       via  ea1db5aa17cab4e9616eb07a86737d76560d6904 (commit)
      from  519bd0d1c9f2147a5503d0a0058d6e73558d2de6 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email.

- Log -----------------------------------------------------------------
commit ea1db5aa17cab4e9616eb07a86737d76560d6904
Author: Petr Machata <pmachata@redhat.com>
Date:   Tue May 27 00:40:16 2008 +0200

    Nits in parser code
    
    * that I should have committed before pushing in the first place.

-----------------------------------------------------------------------

Summary of changes:
 frysk-core/frysk/expr/CExpr.g |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

First 500 lines of diff:
diff --git a/frysk-core/frysk/expr/CExpr.g b/frysk-core/frysk/expr/CExpr.g
index 349327a..98cfdba 100644
--- a/frysk-core/frysk/expr/CExpr.g
+++ b/frysk-core/frysk/expr/CExpr.g
@@ -640,6 +640,7 @@ PARSE_FQIDENT
             if (!Character.isJavaIdentifierStart(part.charAt(0)))
                 throw new RecognitionException("Invalid symbol `" + part + "'.");
 
+            if (false) {
             if (dso != null)
                 System.err.println("DSO:  " + dso);
             if (file != null)
@@ -650,11 +651,10 @@ PARSE_FQIDENT
                 System.err.println("Proc: " + proc);
             System.err.println("Symb: " + (wantPlt ? "plt:" : "")
                                + part + (version != null ? "@" + version : ""));
+            }
 
-            // The string MATCHED holds whole fqid expression.  Decide
-            // if it's syntactically correct.
             fqmatch(matched);
-            System.out.println("matched = " + matched);
+            //System.out.println("matched = " + matched);
         } ;
 
 protected


hooks/post-receive
--
frysk system monitor/debugger


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]