checkpoint
authoradam <adam@megacz.com>
Wed, 14 Dec 2005 06:00:33 +0000 (01:00 -0500)
committeradam <adam@megacz.com>
Wed, 14 Dec 2005 06:00:33 +0000 (01:00 -0500)
darcs-hash:20051214060033-5007d-96349b0220f840e4714fae6a841e37f1a74ccd63.gz

src/edu/berkeley/sbp/util/Reflection.java
tests/meta.g

index cf683f0..fea79e3 100644 (file)
@@ -23,10 +23,16 @@ public final class Reflection {
             }
             if (c == String.class) {
                 boolean ok = true;
-                for(int i=0; i<a.length; i++) if (a[i]==null || !(a[i] instanceof Character)) ok = false;
+                for(int i=0; i<a.length; i++)
+                    if (a[i]==null || (!(a[i] instanceof Character) && !(a[i] instanceof String)))
+                        ok = false;
                 if (ok) {
                     StringBuffer s = new StringBuffer();
-                    for(int i=0; i<a.length; i++) s.append((((Character)a[i])).charValue());
+                    for(int i=0; i<a.length; i++)
+                        s.append(a[i] instanceof Character
+                                 ? (((Character)a[i]).charValue())+""
+                                 : (String)a[i]
+                                 );
                     return s.toString();
                 }
             }
index 02618ab..e4a2518 100644 (file)
@@ -1,11 +1,11 @@
 s         ::=  ws grammar ws                  => "gram"
 ws       !::=  w**
-grammar   ::=  r +/ ws => "grammar"
+grammar   ::=  r +/ ws                        => "grammar"
 r         ::=  word  ^"::=" alternatives /ws
             |  word ^"!::=" alternatives /ws
 
 alternatives  ::=  equiAlt   +/ (ws ">" ws)
-equiAlt       ::=  conjuncts +/ (ws "|" ws)          => "alternatives"
+equiAlt       ::=  conjuncts +/ (ws "|" ws)   => "alternatives"
 
 sequence    ::= es
               > es ws ^"/" e
@@ -29,25 +29,24 @@ range    ::= ec          => "range"
            | ec ^"-" ec
 
 e        ::= word                             => "nonTerminalY"
-           |    [(][)] => "epsilon"
+           |    [(][)]                        => "epsilon"
            |    ^"{" alternatives "}"   /ws
            |    ^"["  (range*) "]"
            |    ^"[~" (range*) "]"
-           |  e ^"+/" e                 /ws
-           |  e ^"*/" e                 /ws
-           |  e ^"?"                    /ws
+           |    ^"^" quoted             /ws
            |  e ^"~/~"                  /ws
-
-           |  e ^"-"  e                 /ws
-
            |    ^"!" e                  /ws
-           |    ^"^" quoted             /ws
+
            |    ^"`" e                  /ws
            |  e ^"#"                    /ws
-           |  quoted                        => "literal"
 
            |  (e ws ^"**" > e ws ^"*")
+           |  e ^"*/" e                 /ws
            |  (e ws ^"++" > e ws ^"+")
+           |  e ^"+/" e                 /ws
+           |  e ^"?"                    /ws
+
+           |  quoted                        => "literal"
 
            |     "(" word ^")"          /ws
            >    ^"(" alternatives ")"   /ws
@@ -57,7 +56,7 @@ w       !::= " "
            | "\n"
            | "\r"
 an       ::= [a-zA-Z0-9_]
-word     ::= an++                           => "sify"
+word     ::= an++
 quoted   ::= "\"" (([~\"\\] | escaped)*) "\"" => "sify"
 escaped  ::= "\\n" => "\n"
            | "\\r" => "\r"